/* General Styles */

body {

    font-family: 'Montserrat', sans-serif;

    background-color: #f4f6f9;

    display: flex;

    justify-content: center;

    align-items: center;

    height: 100vh;

    background-image: url("../img/login/modalbg.21dcb280629a1889.jpg");

    background-size: cover;

    background-position: center;

    position: relative;

}



/* Background Overlay */

body::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: rgba(0, 0, 0, 0.5);

}



/* Login Container */

.login-container {

    background: rgba(255, 255, 255, 0.95);

    padding: 40px;

    border-radius: 12px;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);

    max-width: 380px;

    width: 100%;

    text-align: center;

    position: relative;

    z-index: 1;

}



/* Logo */

.logo-box img {

    width: 75%;

    margin-bottom: 20px;

}



/* Headings */

.login-container h4 {

    font-weight: 700;

    margin-bottom: 10px;

    color: #333;

}



.login-container p {

    font-size: 14px;

    color: #666;

    margin-bottom: 20px;

}



/* Form Styles */

.form-group {

    text-align: left;

    margin-bottom: 15px;

}



.form-group label {

    font-weight: 600;

    display: block;

    margin-bottom: 5px;

    font-size: 14px;

    color: #333;

}



.form-control {

    width: 100%;

    padding: 12px;

    border: 1px solid #ccc;

    border-radius: 6px;

    font-size: 14px;

    transition: border-color 0.3s;

}



.form-control:focus {

    border-color: #EF4023;

    outline: none;

    box-shadow: 0 0 5px rgba(239, 64, 35, 0.5);

}



/* Buttons */

.btn-red {

    background: #EF4023;

    color: #fff;

    padding: 12px;

    border-radius: 6px;

    font-weight: 600;

    transition: background 0.3s;

    width: 105%;

    border: none;

    cursor: pointer;

    font-size: 14px;

    margin-left: 4px;

}



.btn-red:hover {

    background: #d8361e;

}



.btn-otp {

    background: #333;

    color: #fff;

    padding: 10px;

    border: none;

    border-radius: 6px;

    font-size: 14px;

    font-weight: 600;

    cursor: pointer;

    width: 100%;

    transition: background 0.3s;

}



.btn-otp:hover {

    background: #555;

}



/* OTP Button */

.otpnum {

    position: relative;

}



.otpnum button {

    position: absolute;

    right: -20px;

    top: 28px;

    background: #ef4023;

    color: #fff;

    border: none;

    padding: 8px 12px;

    border-radius: 5px;

    cursor: pointer;

}



.otpnum button:hover {

    background: #d8361e;

}



/* Error Message */

.invalid-feedback {

    font-size: 12px;

    color: red;

}



.logout-link {

    color: white;

    text-decoration: none;

}





/* Responsive Design */

@media (max-width: 400px) {

    .login-container {

        padding: 30px;

    }





}


/*START: NEW CSS ADDED ON 15-JULY-2025 FOR CHANGING THE LAYOUT OF HEADER/FOOTER/PAGES*/

.login-page-cross-sign{
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    z-index: 1000;
}

.login-page-cross-sign img{
    height: 25px;
    width: 30px;
}

/*END: NEW CSS ADDED ON 15-JULY-2025 FOR CHANGING THE LAYOUT OF HEADER/FOOTER/PAGES*/