.forgot-password-page {
    background: linear-gradient(rgb(74, 144, 226), rgb(100, 185, 246)), url('background.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
}

.forgot-password-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 80px - 60px); /* Subtract navbar and banner height */
    padding: 20px;
}

.forgot-password-box {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 400px;
    text-align: center;
    animation: fadeIn 0.5s ease-out;
    position: relative;
}

.forgot-password-box h2 {
    color: var(--text-dark);
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: white;
    box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.1);
}

.form-group input::placeholder {
    color: #999;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.forgot-password-submit-btn {
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 35px auto;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
    font-weight: 700;
}

.forgot-password-submit-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.back-button {
    position: absolute;
    left: 20px;
    top: 20px;
    color: #666;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.back-button:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 480px) {
    .forgot-password-box {
        margin: 20px;
        padding: 30px;
    }
    
    .forgot-password-box h2 {
        font-size: 24px;
    }
    
    .form-group input {
        padding: 12px 16px;
        font-size: 15px;
    }
}

/* Animation for error states */
.form-group.error input {
    border-color: #ff3d00;
    animation: shake 0.5s;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
} 