body{
    padding:30px;

}
.login-page {
    background-color: #B3EBF2;
    background-image: url('/images/clarity.png') !important; /* Make sure the path is correct */
    background-size: cover;       /* Make the image cover the entire container */
    background-position: center;  /* Center the image */
    background-repeat: no-repeat; /* Prevent tiling */
    height: 100vh;     
}

.login-container {
    display: flex;
    align-items: stretch;      /* make children same height */
    justify-content: center;
    background-color: #f0f0f0; /* optional */
    border-radius:10px !important;
}

.login-left img {
    box-shadow: 0 8px 20px rgba(74, 157, 174, 0.8);
    height: 100%;  /* match parent height (login box) */
    width: 600px;   /* adjust width according to image ratio */
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    display: block;
}

.login-box{
    box-shadow: 0 8px 20px rgba(74, 157, 174, 0.8);
    background-color: #B3EBF2 !important;
    padding:20px !important;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.login-card-body{
    border-radius:10px !important;
}

.btn-primary{
    background-color: #77CBDA; /* dark olive */
    color: #fff;
}

.btn-primary:hover{
    background-color: #4A9DAE; /* olive drab */
    color: #fff;
}

.btn-link{
    color: #77CBDA; /* dark olive */
}

.btn-link:hover{
    color: #4A9DAE; /* olive drab */
}

/* Hide image on screens smaller than 768px (typical tablet/mobile) */
@media (max-width: 767px) {
    .login-left {
        display: none;
    }

    /* Optional: center the login box when image is gone */
    .login-container {
        justify-content: center;
        padding:0;
        background: none;
    }
}