/* Styling for forgot_password.php */
.forgot-password-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh; /* Adjust as needed */
    background-color: #f4f7f6;
}

.forgot-password-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.forgot-password-form h2 {
    margin-bottom: 25px;
    color: #333333;
    font-size: 28px;
    font-weight: 600;
}

.forgot-password-form p {
    margin-bottom: 20px;
    color: #666666;
    font-size: 16px;
    line-height: 1.5;
}

.forgot-password-form input[type="email"] {
    width: calc(100% - 20px);
    padding: 12px 10px;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.forgot-password-form input[type="email"]:focus {
    border-color: #007bff;
    outline: none;
}

.forgot-password-form button[type="submit"] {
    background-color: #007bff;
    color: #ffffff;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
}

.forgot-password-form button[type="submit"]:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.forgot-password-form .back-to-login {
    display: block;
    margin-top: 20px;
    color: #007bff;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.forgot-password-form .back-to-login:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .forgot-password-form {
        padding: 30px 20px;
        margin: 0 15px;
    }

    .forgot-password-form h2 {
        font-size: 24px;
    }
}
