.forgot-password-container {
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #f5f5f5;
}

.forgot-password-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 420px;
    padding: 40px;
}

.forgot-password-header {
    text-align: center;
    margin-bottom: 32px;
}

.forgot-password-header h1 {
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 8px;
    font-weight: 600;
}

.forgot-password-header p {
    color: #718096;
    font-size: 1rem;
    line-height: 1.5;
}

.forgot-password-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: #2d3748;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s ease;
    background-color: #ffffff;
}

.form-group input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group input:hover {
    border-color: #cbd5e0;
}

.form-group input.error {
    border-color: #e53e3e;
}

.form-errors {
    background-color: #fed7d7;
    border: 1px solid #feb2b2;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 8px;
    color: #c53030;
    font-size: 0.9rem;
}

.field-error {
    color: #e53e3e;
    font-size: 0.85rem;
    margin-top: 6px;
    font-weight: 500;
}

.form-btn-reset {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 8px;
}

.form-btn-reset:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3);
}

.form-btn-reset:active {
    transform: translateY(0);
}

.forgot-password-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}

.forgot-password-footer p {
    color: #718096;
    font-size: 0.9rem;
}

.forgot-password-footer a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.forgot-password-footer a:hover {
    text-decoration: underline;
}

/* Email Sent Overlay */
.email-sent-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.email-sent-box {
    background: white;
    border-radius: 16px;
    padding: 40px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    border-radius: 50%;
    color: white;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.email-sent-box h2 {
    color: #2d3748;
    font-size: 1.5rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.email-sent-box p {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.email-note {
    background-color: #f7fafc;
    border-radius: 8px;
    padding: 12px 16px;
    border-left: 4px solid #667eea;
}

.email-note small {
    color: #718096;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .forgot-password-container {
        padding: 16px;
        min-height: calc(100vh - 60px);
    }
    
    .forgot-password-card {
        padding: 32px 24px;
        max-width: 100%;
    }
    
    .forgot-password-header h1 {
        font-size: 1.75rem;
    }
    
    .form-group input {
        padding: 14px 16px;
    }
    
    .form-btn-reset {
        padding: 16px 24px;
    }
    
    .email-sent-box {
        padding: 32px 24px;
        margin: 0 16px;
    }
    
    .success-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .email-sent-box h2 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .forgot-password-container {
        padding: 12px;
    }
    
    .forgot-password-card {
        padding: 24px 20px;
    }
    
    .forgot-password-header h1 {
        font-size: 1.5rem;
    }
    
    .form-group input {
        padding: 12px 14px;
    }
    
    .email-sent-box {
        padding: 28px 20px;
    }
}

.form-group input[type="email"] {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s ease;
    background-color: #ffffff;
    width: 100%;
}