    /* LOGIN LOGIN LOGIN */
/* Image container and styling of Login */
.image-container {
    width: 100%;
    height: 100%; /* Fill the entire height of parent */
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.login-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 767.98px) {
    .image-container {
        display: none;
    }
}