.forgot_password {
    background: white;
    width: 80%;
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-top: 30px;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #007bff;
}

/* Form field styling */
.forgot_password  input {
    display: block;
    margin-bottom: 10px;
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Button styling */
.forgot_password button {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.forgot_password button:hover {
    background: #0056b3;
}
