body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f5f5f5;
}

.login-container {
    display: flex;
    height: 100vh;
}

/*.left-side {*/
/*    flex: 3;*/
/*    background: url('/assets/img/animal_husbandry_bg.jpg') no-repeat center center;*/
/*    background-size: cover;*/
/*    position: relative;*/
/*}*/

/*.left-side::after {*/
/*    content: "";*/
/*    background-color: rgba(11, 61, 145, 0.6); !* overlay *!*/
/*    position: absolute;*/
/*    top: 0; left: 0; right: 0; bottom: 0;*/
/*}*/
.left-side {
    flex: 3;
    background-color: rgba(11, 61, 145, 0.6);  /* Solid blue background */
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 30px;
    justify-content: center;
}
.left-side::after {
    content: none;
}


.right-side {
    flex: 1;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
}

.form-box {
    width: 100%;
    max-width: 380px;
}

.form-box img.login_img {
    width: 80px;
    margin-bottom: 1rem;
}

.form-box h2 {
    font-weight: 700;
    color: #0B3D91;
    margin-bottom: 0.25rem;
}

.form-box h3 {
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 1.5rem;
}

.form-box input.form-control {
    border-radius: 8px;
    margin-bottom: 1rem;
}

.form-box .form-check-label {
    font-size: 14px;
}

.form-box button.btn {
    width: 100%;
    background-color: #0B3D91;
    color: white;
    padding: 10px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    margin-top: 0.5rem;
}

.forgot-link {
    display: block;
    text-align: right;
    font-size: 14px;
    margin-top: -10px;
    margin-bottom: 15px;
    color: #0B3D91;
    text-decoration: none;
}

.forgot-link:hover {
    text-decoration: underline;
}

.app-version {
    position: absolute;
    bottom: 10px;
    right: 20px;
    font-size: 12px;
    color: #999;
}
.top-logo {
    width: 300px;
    height: 300px;
    border-radius: 50%; /* Makes it a circle */
    background-color: white; /* White background */
    padding: 10px; /* Space between image and white border */
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2); /* Optional: subtle shadow */
    margin-bottom: 20px;
    z-index: 2;
}

@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
    }

    .left-side {
        height: 200px;
        flex: none;
    }

    .right-side {
        flex: none;
    }
}
.forgot-link
{
    margin-top: 4px;
}
.position-relative {
    width: 100%;
}

.toggle-password {
    position: absolute;
    top: 61%;
    right: 26px;
    /*transform: translateY(-50%);*/
    cursor: pointer;
    font-size: 18px;
    color: #999;
    user-select: none;
    z-index: 10;
    height: 20px;
    line-height: 20px;
}

