:root {
    --theme1-bg: #1a3da6;
    --theme1-bg90: #1a3da6E6;
    --theme2-bg: #0f2462;
    --theme2-bg70: #0f2462B3;
    --theme2-bg85: #0f2462D9;
    --primary-color: #fff;
    --secondary-color: #fff;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-image: linear-gradient(var(--theme1-bg), var(--theme2-bg));
    display: flex;
    justify-content: center;
    font-family: 'Roboto Condensed', sans-serif;
    align-items: center;
    height: 100vh;
}

.container {
    width: 100%;
    max-width: 300px; /* Adjusted to match the image width */
    margin: 0 auto;
    text-align: center;
}

.logo {
    font-size: 60px;
    max-height: 65px;
    max-width: 100%;
    font-weight: bold;
    color: #ffd000; /* More exact yellow color */
    margin-bottom: 20px;
    border-radius: 4px
}

.login-box {
    background-color: white;
    border-radius: 3px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.login-header {
    color: #1e3fa3;
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 10px;
    /* margin-top: 10px; */
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Roboto", sans-serif;
}

.bell-icon {
    color: #1e3fa3;
    font-size: 24px;
    margin-left: 5px;
}

.input-group {
    position: relative;
    margin-bottom: 15px;
}

.input-field {
    width: 100%;
    padding: 10px;
    padding-right: 35px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 14px;
}

.input-field:focus {
        outline: none;
        border-color: #61a5fa;
        box-shadow: 0 0 0 3px rgba(97, 165, 250, 0.3);
}

.input-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #333;
}

.btn {
    width: 100%;
    padding: 10px;
    background-color: var(--theme1-bg);
    color: white;
    border: none;
    border-radius: 3px;
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}



.btn:hover .btn-text,
.btn:hover i {
    color: var(--theme2-bg);
    transform: scale(1.05);
}

.btn-text {
    flex-grow: 1;
    text-align: center;
}



.captcha-text {
    font-size: 70%;
    color: #333;
    width: 100%;
    margin-top: 10px;
    text-align: left;
    line-height: 1.4;
    font-family: "Roboto", sans-serif;
    font-weight: 450;
}
.link:hover {
    cursor: pointer;
    text-decoration: underline;
    color: var(--theme1-bg90)
}

.link {
    color: #007bff;
    text-decoration: none;
}
.maildiv{
    margin-top: 10px;
}
.email {
    margin-top: 12px;
    color: #007bff;
    font-size: 14px;
    text-align: center;
    margin-bottom: 10px;
    text-decoration: none;
    font-family: "Roboto", sans-serif;

}
.email:hover {
    text-decoration: underline;
    color: black;
}

/* Responsive design */
@media (min-width: 768px) {
    .col-md-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .container {
        max-width: 320px;
    }
    
    .login-box {
        padding: 25px;
    }
}
