/* Auth surface uplift (frontend-prototypes#49) — the entry pages on the design system.
   Shared vocabulary for the four auth views. Reuses the site.css tokens and the
   box-white / btn primitives; adds only what the composite lacked. No view-local styles. */

.auth-card {
    padding: 44px 52px 48px;
}

@media (max-width: 575px) {
    .auth-card {
        padding: 30px 24px;
    }
}

.auth-eyebrow {
    color: var(--green);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 16px;
}

.auth-lead {
    color: var(--steel);
    margin-bottom: 34px;
}

.auth-step {
    align-items: center;
    display: flex;
    gap: 12px;
    margin: 32px 0 14px;
    text-align: left;
}

.auth-step-num {
    align-items: center;
    background: var(--navy);
    border-radius: 50%;
    color: #fff;
    display: flex;
    flex: none;
    font-size: 15px;
    font-weight: 600;
    height: 30px;
    justify-content: center;
    width: 30px;
}

.auth-step-label {
    color: var(--navy);
    font-weight: 600;
}

.auth-submit {
    margin-top: 40px;
}

.auth-note {
    background: var(--panel);
    color: var(--steel);
    display: flex;
    font-size: var(--text-label);
    gap: 10px;
    margin-top: 28px;
    padding: 14px 16px;
    text-align: left;
}

.auth-note svg {
    flex: none;
    margin-top: 1px;
}

.auth-quietlink {
    color: var(--steel);
    font-size: var(--text-label);
    margin-top: 24px;
    text-align: center;
}

.auth-quietlink a {
    color: var(--blue);
    font-weight: 600;
}

.auth-support {
    color: var(--steel);
    font-size: var(--text-label);
    margin-top: 30px;
}

.auth-support a {
    color: var(--blue);
    font-weight: 600;
}

.auth-modal-actions {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.auth-modal-actions .btn {
    flex: 1;
}

.auth-btn-cancel {
    background: var(--panel);
    border: 0;
    color: var(--navy);
}
