/* Forgot Password Prompt Styles */
#forgot-password-prompt {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 18px;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.04);
    padding: 18px 20px;
    z-index: 999999;
    border: 1px solid rgba(255,255,255,0.6);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    animation: slideUp 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp {
    from { bottom: -100px; opacity: 0; transform: translateX(-50%) scale(0.96); }
    to { bottom: 20px; opacity: 1; transform: translateX(-50%) scale(1); }
}

.forgot-password-prompt-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.forgot-password-prompt-title {
    font-weight: 700;
    font-size: 16px;
    letter-spacing: -0.01em;
    color: #0ea5e9; /* Nova Default Blue */
    color: rgba(var(--colors-primary-500, 14, 165, 233), 1);
}

.forgot-password-prompt-close {
    background: rgba(0,0,0,0.05);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    color: #6b7280;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.forgot-password-prompt-close:hover {
    background: rgba(0,0,0,0.1);
    color: #111827;
    transform: rotate(90deg);
}

.forgot-password-prompt-body {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.55;
    margin-bottom: 14px;
}

/* Dark Mode Styles */
html.dark #forgot-password-prompt {
    background: rgba(30, 41, 59, 0.85);
    border-color: rgba(255,255,255,0.08);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
}

html.dark .forgot-password-prompt-title {
    color: #38bdf8;
    color: rgba(var(--colors-primary-400, 56, 189, 248), 1);
}

html.dark .forgot-password-prompt-body {
    color: #cbd5e1;
}

html.dark .forgot-password-prompt-close {
    background: rgba(255,255,255,0.06);
    color: #94a3b8;
}

html.dark .forgot-password-prompt-close:hover {
    background: rgba(255,255,255,0.12);
    color: #f8fafc;
}
