/* Pro-Monty — registreren.css v2 */

.auth-wrap { display: flex; justify-content: center; align-items: flex-start; padding: 32px 0; }

.auth-card {
    background: #fff;
    border-radius: var(--radius-sm);
    padding: 40px 36px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-line);
    width: 100%;
    max-width: 420px;
}

.auth-logo { font-size: 2.2rem; text-align: center; margin-bottom: 12px; }

.auth-titel {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--color-ink);
    text-align: center;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.auth-sub {
    color: var(--color-muted);
    font-size: 0.875rem;
    text-align: center;
    margin-bottom: 28px;
    line-height: 1.6;
}

.auth-error {
    background: var(--color-rose-bg);
    border: 1px solid rgba(176,74,62,0.25);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    font-size: 0.875rem;
    color: var(--color-rose);
    margin-bottom: 16px;
}

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

.form-rij-auth { display: flex; flex-direction: column; gap: 5px; }

.form-rij-auth label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.form-rij-auth input,
.form-rij-auth select {
    border: 1px solid var(--color-line-dark);
    border-radius: var(--radius-md);
    padding: 11px 14px;
    font-family: 'Geist', system-ui, sans-serif;
    font-size: 0.92rem;
    color: var(--color-ink);
    background: #fff;
    outline: none;
    transition: border-color var(--duration-fast) var(--ease-out);
}

.form-rij-auth input:focus,
.form-rij-auth select:focus {
    border-color: var(--color-orange);
    box-shadow: 0 0 0 3px rgba(234,107,42,0.1);
}

.auth-btn {
    background: var(--color-orange);
    color: #fff;
    border: none;
    border-radius: var(--radius-pill);
    padding: 13px;
    font-family: 'Geist', system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 4px;
    transition: background var(--duration-fast) var(--ease-out);
    width: 100%;
}
.auth-btn:hover { background: var(--color-orange-deep); }

.auth-wissel { text-align: center; margin-top: 16px; font-size: 0.875rem; color: var(--color-muted); }
.auth-wissel a { color: var(--color-orange); font-weight: 600; text-decoration: none; }
.auth-wissel a:hover { color: var(--color-orange-deep); }

.auth-disclaimer {
    text-align: center;
    margin-top: 12px;
    font-size: 0.75rem;
    color: var(--color-muted-soft);
    line-height: 1.5;
}

/* ── Wachtwoord sterkte ──────────────────────────────────────────────── */
.sterkte-balk-wrap {
    height: 4px;
    background: var(--color-line);
    border-radius: var(--radius-pill);
    margin-top: 6px;
    overflow: hidden;
}
.sterkte-balk {
    height: 100%;
    width: 0;
    border-radius: var(--radius-pill);
    transition: width 0.3s var(--ease-out), background 0.3s;
}
.sterkte-balk.zwak  { background: var(--color-rose); }
.sterkte-balk.matig { background: var(--color-amber); }
.sterkte-balk.goed  { background: #F5A623; }
.sterkte-balk.sterk { background: var(--color-fresh); }

.vereisten { display: flex; flex-direction: column; gap: 3px; margin-top: 8px; }
.vereiste { font-size: 0.75rem; color: var(--color-muted-soft); transition: color 0.2s; }
.vereiste.ok { color: var(--color-fresh); font-weight: 600; }

.herhaling-hint { font-size: 0.75rem; margin-top: 5px; }
.herhaling-hint.match      { color: var(--color-fresh); font-weight: 600; }
.herhaling-hint.geen-match { color: var(--color-rose); }

/* ── Wachtwoord toon/verberg ─────────────────────────────────────────── */
.ww-wrap { position: relative; display: flex; align-items: center; }
.ww-wrap input { flex: 1; padding-right: 44px; }
.ww-toon {
    position: absolute; right: 0; top: 0; bottom: 0;
    width: 42px; border: none; background: transparent;
    cursor: pointer; font-size: 1rem; color: var(--color-muted);
    display: flex; align-items: center; justify-content: center;
}
.ww-toon:hover { color: var(--color-anthracite); }

.auth-trust {
    text-align: center;
    font-size: 0.78rem;
    color: var(--color-muted);
    background: var(--color-fresh-bg);
    border-radius: var(--radius-md);
    padding: 8px 12px;
    margin-top: 4px;
    border: 1px solid rgba(47,111,78,0.15);
}

@media (max-width: 480px) {
    .auth-card { padding: 28px 20px; }
}
