/* Forgot Password Modal Styles */

.modal-content-small {
    max-width: 500px;
    padding: 2.5rem;
}

.forgot-password-container {
    text-align: center;
}

.forgot-password-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s ease-in-out infinite;
}

.forgot-password-icon i {
    font-size: 2rem;
    color: white;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(124, 58, 237, 0);
    }
}

.forgot-password-container h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.forgot-password-container p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.forgot-password-form {
    text-align: left;
}

.forgot-password-form .form-group {
    margin-bottom: 1.5rem;
}

.forgot-password-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text);
    font-weight: 500;
}

.forgot-password-form input {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: 0.5rem;
    color: var(--text);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.forgot-password-form input:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--bg-card);
}

.forgot-password-form .btn-primary {
    width: 100%;
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.forgot-password-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.3);
}

.forgot-password-form .btn-secondary {
    width: 100%;
    padding: 1rem;
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid var(--border);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.forgot-password-form .btn-secondary:hover {
    background: var(--bg-light);
    border-color: var(--primary);
    color: var(--primary);
}

.forgot-password-link {
    text-align: right;
    margin-bottom: 1rem;
}

.forgot-password-link a {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.forgot-password-link a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

/* Success State */
.forgot-password-success {
    padding: 2rem;
    text-align: center;
}

.forgot-password-success i {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 1rem;
    display: block;
}

.forgot-password-success h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.forgot-password-success p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .modal-content-small {
        max-width: 90%;
        padding: 2rem 1.5rem;
    }

    .forgot-password-icon {
        width: 60px;
        height: 60px;
    }

    .forgot-password-icon i {
        font-size: 1.5rem;
    }

    .forgot-password-container h2 {
        font-size: 1.5rem;
    }
}
