/* ========================================
   Original Login Layout with Blurred Background
   ======================================== */

.login-page-bg {
    position: fixed;
    inset: -20px;
    background-image: url('../images/bonto-jai-img.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    filter: blur(3px) brightness(0.72);
    transform: scale(1.05);
    z-index: -2;
}

.login-overlay {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 49, 49, 0.75), rgba(15, 23, 42, 0.85));
    z-index: -1;
}

.auth-card {
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    border-radius: 20px !important;
    background: rgba(255, 255, 255, 0.94) !important;
    backdrop-filter: blur(16px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(16px) saturate(180%) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35) !important;
    overflow: hidden;
}

.content-right {
    padding: 0 !important;
    display: flex;
    align-items: stretch;
    background: #f8f9fc;
}

.content-right lottie-player {
    width: 100%;
    height: 100%;
}

@media (max-width: 991.98px) {
    .auth-content > .col-lg-7,
    .auth-content > .col-lg-5 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .content-right lottie-player {
        min-height: auto;
    }
}

@media (max-width: 767.98px) {
    .content-right {
        display: none;
    }
    .auth-content > .col-lg-7 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
