/* ── existing overrides ── */
#auth-heading-title {
    padding-top: 8px;
}

/* ── Light theme — matches landing page design system ── */

/* Body */
#auth-body {
    background-color: #f8fafc !important;
    overflow-y: auto;
    overflow-x: hidden;
    font-family: 'Outfit', system-ui, sans-serif;
}

/* Container card */
#auth-container {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 16px rgba(0, 0, 0, 0.04) !important;
    color: #0f172a !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* Headings inside container */
#auth-container h1,
#auth-container h2,
#auth-container h3,
#auth-container [id="auth-heading-title"] {
    color: #0f172a !important;
    font-family: 'Outfit', system-ui, sans-serif;
}

/* Inputs */
.auth-component-input {
    background: #ffffff !important;
    border-color: #e2e8f0 !important;
    color: #0f172a !important;
}
.auth-component-input:focus {
    background: #ffffff !important;
    border-color: #0d9488 !important;
    --tw-ring-color: rgba(13, 148, 136, 0.2) !important;
}
.auth-component-input::placeholder {
    color: #64748b !important;
}

/* Floating labels */
label.auth-component-input {
    background: transparent !important;
    color: #64748b !important;
}
label.auth-component-input.auth-component-input-label-focused,
.auth-component-input-label-focused {
    background: transparent !important;
    color: #0d9488 !important;
}

/* Submit button — dark slate matching landing page lp-btn-dark */
.auth-component-button {
    background: #0f172a !important;
    color: #ffffff !important;
    border: none !important;
    transition: background 0.18s ease !important;
}
.auth-component-button:hover {
    background: #1e293b !important;
    opacity: 1 !important;
    filter: none !important;
}

/* Links */
#auth-container a {
    color: #0d9488 !important;
}
#auth-container a:hover {
    color: #0f766e !important;
}
#auth-container a.text-blue-600 {
    color: #0d9488 !important;
}

/* Validation errors */
#auth-container p.text-red-600,
#auth-container .text-red-600 {
    color: #dc2626 !important;
}
#auth-container input.border-red-300 {
    border-color: #fca5a5 !important;
}

/* Muted / secondary text */
#auth-container .opacity-47,
#auth-container .text-gray-500,
#auth-container .text-gray-600,
#auth-container .text-gray-700 {
    color: #64748b !important;
}

/* Divider */
#auth-container hr,
#auth-container .border-gray-200 {
    border-color: #e2e8f0 !important;
}

/* Social provider info box */
#auth-container .bg-zinc-50 {
    background: #f0fdf9 !important;
    border-color: #99f6e4 !important;
    color: #334155 !important;
}

/* Password strength bar */
.pw-strength-bars {
    display: flex;
    gap: 4px;
    margin-top: 8px;
    margin-bottom: 4px;
}
.pw-strength-bar {
    height: 3px;
    flex: 1;
    border-radius: 9999px;
    background: #e2e8f0;
    transition: background 0.3s ease;
}
.pw-strength-label {
    font-size: 11px;
    margin-top: 2px;
    transition: color 0.3s ease;
}
