/* Custom Login Styles */
body.login-page {
    background-color: #ffffff;
    background-image: url('/assets/adminlte/dist/img/hometop-bg.png');
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    overflow: hidden;
}

.login-wrapper {
    display: flex;
    width: 100%;
    max-width: 1400px;
    height: 100vh;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    gap: 4rem;
}

.login-left {
    flex: 1.2;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    height: 100%;
    padding-bottom: 2vh;
}

.login-athletes-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    object-position: bottom;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
}

.login-right {
    flex: 0.8;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.login-box {
    width: 100%;
    max-width: 450px !important;
}

.login-box .card {
    border: none;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-radius: 15px;
}

.login-logo a {
    color: #1a237e;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .login-wrapper {
        flex-direction: column;
        justify-content: center;
        gap: 0;
        padding: 0 24px; /* Perbesar padding agar card tidak terlalu lebar */
    }
    .login-left {
        display: none;
    }
    .login-right {
        justify-content: center;
        width: 100%;
    }
    .login-box {
        max-width: 360px !important; /* Batasi maksimal lebar card di mobile */
    }
    body.login-page {
        background-size: cover;
    }
}
