@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
body, html {
    height: 100%;
    margin: 0;
/*    font-family: Arial, sans-serif;*/
    font-family: "Inter", serif;
    background: #e5edfb;
    background-size: cover;
    position: relative;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}
* {list-style:none; margin:0; padding:0; -webkit-box-sizing:border-box; -moz-box-sizing:border-box; box-sizing:border-box;}
img{max-width: 100%; height: auto}
/*
.overlay {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);  Dark overlay 
    z-index: 1;
}
*/

.navbar {
    display: flex;
    justify-content: center;
    padding: 10px;
   border-bottom: 1px solid #cccccc38;
    background-color: #07195a;
    position: relative;
    z-index: 3; /* Above the overlay */
}

.navbar a {
    color: #ffffff;
    padding: 10px 15px;
    text-decoration: none;
    margin: 0 10px;-moz-transition: all .2s linear;-webkit-transition: all .2s linear;
}

.navbar a:hover {
    background-color:#e6edfb;
    color:#695eef;border-radius: 30px;
}

.container {
    min-height: calc(100% - 60px); /* Adjust for navbar height */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 80px 20px;
    box-sizing: border-box;
    z-index: 1; /* Above the overlay */
}

.login-form { text-align: center;
    width: 470px; /* Increased width */
    background: rgba(255, 255, 255, 0.8);
    padding: 80px 40px 40px 40px; /* Adjusted padding */
    
    position: relative;
    
        margin-bottom: 24px;
    border: 1px solid #07195a;
    box-shadow: none;
    border-radius: 12px;
    height: calc(100% - 24px)
}

.logo-circle {
    width: 100px;
    height: 100px;
    background: #07195a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -60px; /* Adjusted position */
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden; /* Ensures content does not overflow the circular area */
}

.logo-circle img {
    max-width: 80%; /* Adjust the logo size to fit within the circle */
    max-height: 80%; /* Maintain the aspect ratio */
    object-fit: contain; /* Ensures the image is scaled correctly */
}

.alert {
    color: red;
    margin-bottom: 20px;
}

input[type="text"], input[type="password"] , input[type="email"] {
        display: block;
    width: 100%;
    padding: .5rem .9rem;
    font-size: .875rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color:#fff;
    background-clip: padding-box;
    border:1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius:4px;
    -webkit-transition: border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
    margin-bottom: 15px;
    outline: none !important;
    height: 45px; font-family: "Inter", serif;
}

button {
    padding:10px 20px;
    border: none; font-weight: 700;margin: 0 auto; display: block;
    border-radius: 30px;
    background-color: #695eef;
    color: white;
    cursor: pointer;font-family: "Inter", serif;
    margin-bottom: 20px;
   
}

button:hover {
    background-color: #5950cb;
}

.forgot-password {display: inline-block;
    font-size: 14px;
    margin: 0 0px 0 5px;
    color: #6d7080;
    text-decoration: none;
    border-right: 1px solid #00000024;
    padding: 0 10px 0 0;
}
.forgot-password:last-child{border-right:0}

.forgot-password:hover {color: #695eef;
    text-decoration: none;
}

.login-form a{color: #6d7080; text-decoration: none}
.login-form a:hover{color: #695eef;}

/*
.form-check-label a{color: #6d7080;}
.form-check-label a:hover {color: #695eef;}
*/
.form-check-label{display: block; margin-bottom: 10px}
.banner-row {
    display: flex;
    justify-content: space-around;
    padding: 20px 0;
    width: 100%;
    max-width: 400px;
}

.banner {
    width: 468px;
    height: 60px;
    background-color: #ddd; /* Placeholder for banners */
}

footer {
    text-align: center;
    
    
    
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 3; /* Ensure footer is above overlay */
        background:  #07195a;
    border-top: 1px solid #cccccc69;
    color: #ffffff;
    font-size: 12px;
    padding: 15px 10px;
}

.alert-box {
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 20px;
    text-align: center;
}

.alert-box.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-box.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}


@media only screen and (max-width:767px){
    .login-form{width: 100%}   
    .navbar a { padding: 5px 15px; font-size: 14px;}
}