/* ── Auth pages (connexion, inscription, reset, etc.) ── */
html, body { background: #0f172a; font-family: 'Inter', sans-serif; }

.blob-1 {
    position: fixed; top: -180px; right: -120px;
    width: 560px; height: 560px;
    background: radial-gradient(circle, rgba(99,102,241,0.18) 0%, transparent 70%);
    pointer-events: none; z-index: 0;
}
.blob-2 {
    position: fixed; bottom: -180px; left: -120px;
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(59,130,246,0.14) 0%, transparent 70%);
    pointer-events: none; z-index: 0;
}

.auth-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.auth-input {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    color: #f1f5f9;
    transition: border-color .15s, box-shadow .15s;
}
.auth-input::placeholder { color: #475569; }
.auth-input:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99,102,241,0.18);
    outline: none;
}
.auth-input:-webkit-autofill,
.auth-input:-webkit-autofill:hover,
.auth-input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px #1e293b inset;
    -webkit-text-fill-color: #f1f5f9;
}

.auth-divider { border-color: rgba(255,255,255,0.08); }

.eye-btn { background: none; border: none; color: #475569; cursor: pointer; transition: color .15s; }
.eye-btn:hover { color: #94a3b8; }

.auth-submit-btn:hover { opacity: 0.9; }
