/* Custom styles for forgot_password.php */
/* Ensure the body margins are still removed for the Vh to work */
body, html {
    margin: 0;
    padding: 0;
    height: 100%; 
}

/* 1. Target the main container/wrapper */


.form-wrapper { 
    min-height: 100vh;
    background-color: #f8f9fa;  
    padding-top: 20px; /* Adjust '100px' to your desired space */
}


 .form-wrapper .forgot-password-container{
    max-width: 600px;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    
 }   

.form-wrapper .forgot-password-container .custom-send-btn {
    background: #ff5c00 !important; /* Your specific color */
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
   width: auto !important;
    font-weight: bold;
    margin-top: 15px; /* Add some space above the button */
    margin-bottom: 20px;
    display: inline-block;
    text-align: center;
}

.form-wrapper .forgot-password-container .custom-send-btn:hover {
    background: #e65200; /* Slightly darker on hover */
}

/* 4. Style the labels, text, or back-to-login link */
.form-wrapper .forgot-password-container .form-label {
    font-weight: 600;
}

.back-to-login a {
    color: #007bff;
    text-decoration: none;
}

 