* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(205, 148, 64, 0.22), transparent 35%),
        linear-gradient(135deg, #061616, #102a2a);
    color: #161616;
    min-height: 100vh;
}

.signup-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
}

.signup-card {
    width: 100%;
    max-width: 680px;
    background: #ffffff;
    border-radius: 30px;
    padding: 38px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.brand-badge {
    display: inline-block;
    padding: 9px 16px;
    border-radius: 999px;
    background: #062525;
    color: #d6a04b;
    font-weight: 900;
    margin-bottom: 18px;
}

h1 {
    margin: 0 0 12px;
    font-size: 32px;
    line-height: 1.08;
    color: #062525;
}

.intro {
    color: #555;
    margin-bottom: 22px;
    line-height: 1.65;
}

.builder-summary,
.next-steps,
.draft-box {
    border-radius: 18px;
    padding: 18px;
    margin-bottom: 22px;
}

.builder-summary {
    background: #f7fbfb;
    border: 1px solid #dceeee;
}

.builder-summary h3,
.next-steps h3 {
    margin: 0 0 14px;
    color: #062525;
    font-size: 18px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 10px 0;
    border-top: 1px solid #e5eeee;
}

.summary-row:first-of-type {
    border-top: none;
}

.summary-row span {
    color: #6b7280;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.summary-row strong {
    text-align: right;
    color: #062525;
}

.draft-box {
    background: #fff8ee;
    border: 1px solid #efd9b8;
}

.draft-box span {
    display: block;
    font-size: 13px;
    color: #7b5a28;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 5px;
}

.draft-box strong {
    font-size: 18px;
    color: #2d1b14;
}

.next-steps {
    background: #f6fff9;
    border: 1px solid #cdebd6;
}

.next-steps ul {
    margin: 0;
    padding-left: 20px;
    color: #315340;
    line-height: 1.75;
    font-weight: 700;
}

form {
    display: grid;
    gap: 16px;
}

label {
    font-weight: 800;
    color: #222;
}

input {
    width: 100%;
    margin-top: 7px;
    padding: 14px 15px;
    border: 1px solid #ddd;
    border-radius: 14px;
    font-size: 16px;
}

input:focus {
    outline: none;
    border-color: #c88b3a;
    box-shadow: 0 0 0 4px rgba(200, 139, 58, 0.14);
}

button {
    border: none;
    border-radius: 999px;
    padding: 16px 18px;
    background: #c88b3a;
    color: white;
    font-size: 17px;
    font-weight: 950;
    cursor: pointer;
    margin-top: 8px;
}

button:hover {
    background: #a8722f;
}

button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.message {
    margin: 0;
    font-weight: 800;
}

.message.success {
    color: #0f7b52;
}

.message.error {
    color: #b42318;
}

.auth-link {
    margin: 22px 0 0;
    text-align: center;
    color: #555;
    font-weight: 700;
}

.auth-link a {
    color: #0f6f6f;
    font-weight: 900;
    text-decoration: none;
}

.note {
    margin: 18px 0 0;
    color: #777;
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
}

@media (max-width: 560px) {
    .signup-page {
        padding: 18px;
    }

    .signup-card {
        padding: 26px 22px;
        border-radius: 22px;
    }

    .signup-card {
        padding: 24px 20px;
    }

    button {
        width: 100%;
    }

    h1 {
        font-size: 29px;
    }

    .summary-row {
        flex-direction: column;
        gap: 4px;
    }

    .summary-row strong {
        text-align: left;
    }
}