/* 

#navbarNav {
    background-color: #343a40;  
    color: white;
    padding: 7px 10px;
    font-size: 15px;
    font-weight: bold;
    position:absolute;
    top: 0; 
    left: 0;
    right: 0;
    overflow: hidden;
    
}

.nav-item {
    margin-right: 20px;
    color: white;
}
.nav-link{
    color: white !important;
    text-decoration: none; 
    font-weight: 400;
   
} */



/* .col-md-6:first-child {
   
    color: white;
    text-align: center;
    display:flex;
    align-items: center;
    justify-content: center;
    
}
.container{
    display: flex;
} */

/* .img{
    margin-left: 0%;
    width: 60%;
    height: 500px;
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    
  
    
} */
/* Form styling */
form {
   


 
position: relative;  

} 
/* .login-form{
    margin-right: 0%;
    position: relative;
    
    top:0;
    bottom: 0;
    right: 0;
    width: 50%;
    justify-content: center;
} */

.login-form {
    background-color: #ffffff;
    padding: 0px;
    max-width: 60vw;      /* Set max-width to 60% of viewport */
    width: 60vw;          /* Set width to 60% of viewport */
    margin-left: auto;    /* Pushes the form to the right */
    margin-right: 0;
}
h2{
    color: #062a78;
}
.form-control{

    background-color:  #dddddd; /* Light grey background */
    border: 1px solid #ccc; /* Light grey border */
    border-radius: 5px; /* Rounded corners */
    padding: 5px;
    font-size: 14px;
    width: 100%;
    margin-top: 10px;
    color: #333; /* Text color */
}


label{
    display: flex;
    margin-top: 20px;
}
form .btn-primary {
    background-color: #062a78;
    border-color: #062a78 ;
    width: 50%;
    padding: 5px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 5px;
}

form .btn-primary:hover {
    background-color: #4169e1 ; 
    border-color: #4169e1 ;
   
 }
/*new modified */

.container-fluid {
    height: 100vh; /* Full viewport height */
}

.img-container {
    height: 100%; /* Full height of the container */
    /* Ensure the image doesn't overflow */
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    padding: 0;
}


.img-container img {
    width: 100%; /* Full width of the container */
    height: 100%; /* Full height of the container */
    object-fit: cover; /* Ensure the image covers the container without distortion */
}

.login-form {
    background-color: #ffffff;
    padding: 0px;
   
  
    max-width: 100%;
}

.login-form h4 {
    text-align: center;
    margin-bottom: 20px;
}



/* Footer styling */
footer {
    text-align: center;
    /* padding: 3px; */
    background-color: #062a78; 
    color: white;
  
    font-size: 14px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

@media (max-width: 768px) {
    .img {
        display: none; /* Hide the image on smaller screens */
    }



    .login-form {
        width:80%;/* Adjust the width of the login form */
        position: relative; /* Change to relative for centering */
        margin: 0 auto; /* Center the form horizontally */
        padding: 20px; /* Add padding for better spacing */
        display: flex; /* Use flexbox for centering */
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 50vh; /* Make the form take the full height of the viewport */
    }

    form {
        position: relative; /* Remove absolute positioning */
        top: auto;
        left: auto;
        width: 100%; /* Ensure the form takes the full width of the container */
        align-items: center;;
    }

    .form-control {
        width: 100%; /* Adjust input width for smaller screens */
    }

    form .btn-primary {
        width: 100%; /* Adjust button width for smaller screens */
    }
}