body {
    font-family: 'Poppins', Arial, sans-serif;
    background-color: #f3eff5;
}


/* Forgot Password page styles - adapted from login.css */
.forgot-password-container {
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.forgot-password-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
     /* max-width: 700px; Adjust as needed */
    width: 100%;
}

.fa-solid{
    color: #10720B;
    font-size: 4rem;
    margin: 15px;
    align-items: center;
}

.forgot-password-form-wrapper {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content vertically */
}

.library-logo {
    max-width: 100px;
    margin-bottom: 2rem;
}

@media (max-width: 991px) {
    .forgot-password-card {
        max-width: 500px;
    }
}

.forgot-password-form-panel {
    padding: 0;
}

.forgot-password-form-wrapper {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content vertically */
}

.forgot-password-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-subtitle {
    color: #777;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.btn-submit {
    background-color: #10720B;
    padding: 0.8rem;
    font-weight: 600;
    transition: all 0.3s;
    color: white;
}

.btn-submit:hover {
    background-color: #0b5508;
    /* transform: translateY(-2px); */
    /* box-shadow: 0 5px 15px rgba(16, 114, 11, 0.3); */
    color: white;
}

.back-to-login-link {
    color: #10720B;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
    display: block; /* Make it a block element for margin */
    margin-top: 1rem;
    text-align: center;
}

.back-to-login-link:hover {
    color: #0b5508;
    text-decoration: underline;
}

/* Form controls styling */
.form-control:focus {
    border-color: #10720B;
    box-shadow: 0 0 0 0.25rem rgba(16, 114, 11, 0.25);
}

.alert {
    padding: 0.75rem 1.25rem;
    border-radius: 0.25rem;
    margin-bottom: 1rem;
}

.alert-danger {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.alert-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

/* Responsive styles */
@media (max-width: 991px) {
    .forgot-password-info-panel {
        display: none;
    }
    
    .forgot-password-card {
        max-width: 500px;
    }
}

@media (max-width: 767px) {
    .forgot-password-container {
        padding: 1rem;
    }
    
    .forgot-password-form-wrapper {
        padding: 1.5rem;
    }
}

@media(max-width: 576px) {
    .forgot-password-card {
        max-width: 100%;
        margin: 0 1rem;
    }
    
    .forgot-password-form h3 {
        font-size: 1.25rem;
    }
    
    .form-subtitle {
        font-size: 0.85rem;
    }
}

@media (max-width: 400px) {
    .forgot-password-form h3 {
        font-size: 1.1rem;
    }
    
    .form-subtitle {
        font-size: 0.8rem;
    }
    
    .btn-submit {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
}
