

/* Page layout */
section.forgot-password-page {
    display: flex !important;
    justify-content: center !important;
    align-items: flex-start !important;
    min-height: 100vh !important;
    background-color: #f9f9f9 !important;
    padding: 40px 20px !important;
    box-sizing: border-box !important;
}

/* Container layout */
.forgot-password-container {
    display: flex;
    flex-direction: row;
    background: #ffffff;
    border-radius: 10px; /* Smooth corners for the entire container */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    width: 100%;
    overflow: hidden;
    margin-top: 20px; /* Add some spacing from the top */
}

/* Left Column: Image */
.forgot-password-image {
    flex: 1;
    background-color: #f0f0f0;
    border-top-left-radius: 10px; /* Smooth top-left corner */
    border-bottom-left-radius: 10px; /* Smooth bottom-left corner */
    overflow: hidden; /* Ensure the image respects the rounded corners */
}

.forgot-password-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Right Column: Form */
.forgot-password-form {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px; /* Add spacing between elements */
}

.forgot-password-form h2 {
    font-size: 28px;
    color: #0056b3;
    margin-bottom: 10px; /* Add spacing below the heading */
    font-weight: bold;
    text-align: left;
    width: 100%;
}

.forgot-password-form form {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Add spacing between input fields and button */
    width: 100%;
}

.forgot-password-form label p {
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
}

.forgot-password-form input[type="email"] {
    padding: 12px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.forgot-password-form input:focus {
    border-color: #007bff;
    outline: none;
}

.forgot-password-form button {
    padding: 12px 15px;
    font-size: 16px;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: bold;
    width: 100%; /* Ensure the button spans the full width */
}

.forgot-password-form button:hover {
    background-color: #0056b3;
}

.forgot-password-form #message {
    margin-top: 15px;
    font-size: 14px;
    font-weight: bold;
    text-align: left;
    width: 100%;
}

