.forget_section {
    background: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;

}

.forget_link_container {
    width: 100%;
    max-width: 400px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.forget_logo {
    text-align: center;
    margin-bottom: 8px;
}

.forget_logo img {
    height: 50px;
}

.forget_heading {
    text-align: center;
    color: #573b8a;
    margin-bottom: 10px;
}


.form-group {
    margin-bottom: 20px;
}

.lbl_enter_email {
    display: block;
    margin-bottom: 5px;
    color: #555;
}

.forget_input[type="email"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background: #573b8a;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #4a2f7a;
}

/* .back-to-login {
    text-align: center;
    margin-top: 20px;
}

.back-to-login a {
    color: #573b8a;
    text-decoration: none;
} */

.back-to-login {
    text-align: center;
    margin-top: 20px;
}

.back-to-login a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007BFF;
    /* blue button */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.back-to-login a:hover {
    background-color: #0056b3;
    /* darker blue */
    transform: translateY(-2px);
}

.back-to-login a:active {
    background-color: #004080;
    transform: translateY(0);
}


.message {
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    text-align: center;
}

.success {
    background: #d4edda;
    color: #155724;
}

.error {
    background: #f8d7da;
    color: #721c24;
}