/* apply.coach — Auth pages (signup, login, forgot, reset, verify-email) */

.auth-main {
    min-height: calc(100vh - 70px);
    padding: 60px 20px 100px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.auth-card {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 36px 32px;
    width: 100%;
    max-width: 460px;
}

.auth-card h1 {
    margin: 0 0 14px;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.auth-lead {
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.55;
    margin: 0 0 28px;
}

/* Formulaire */
.auth-form { display: flex; flex-direction: column; gap: 16px; }

.auth-field { display: block; }
.auth-field span {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}
.auth-field input {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: inherit;
    font-size: 15px;
    padding: 12px 14px;
}
.auth-field input:focus {
    border-color: var(--accent);
    outline: none;
}

/* Bouton submit (spinner inline) */
.auth-label, .auth-loading {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Notice (success / info) */
.auth-notice {
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 16px;
}
.auth-notice-info {
    background: rgba(91, 140, 255, 0.10);
    border: 1px solid rgba(91, 140, 255, 0.30);
    color: var(--text);
}
.auth-notice-success {
    background: rgba(74, 222, 128, 0.10);
    border: 1px solid rgba(74, 222, 128, 0.30);
    color: var(--text);
}

/* Liens utilitaires */
.auth-forgot {
    margin: 4px 0 0;
    text-align: right;
    font-size: 13.5px;
}
.auth-forgot a { color: var(--text-muted); text-decoration: none; }
.auth-forgot a:hover { color: var(--accent); }

.auth-switch {
    margin: 18px 0 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}
.auth-switch a { color: var(--accent); text-decoration: none; font-weight: 600; }
.auth-switch a:hover { color: var(--accent-hover); }

.auth-terms {
    margin: 8px 0 0;
    color: var(--text-muted);
    font-size: 12.5px;
    line-height: 1.55;
    text-align: center;
}
.auth-terms a { color: var(--text-muted); text-decoration: underline; }
.auth-terms a:hover { color: var(--text); }

/* Page verify-email (carte résultat) */
.auth-card-result {
    text-align: center;
}
.auth-card-result h1 { margin-bottom: 10px; }
.auth-card-result p {
    color: var(--text-muted);
    margin: 0 0 26px;
    font-size: 15px;
    line-height: 1.55;
}
.auth-card-success h1 { color: var(--success); }
.auth-card-expired h1, .auth-card-invalid h1 { color: var(--warn); }
