body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("../img/bendungan.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
}

.login-container {
    width: 90%;
    max-width: 1111px;
    min-height: 600px;
    background: white;
    border-radius: 8px;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 20px;
    display: flex;
}

.login-left {
    width: 50%;
    background: #45AB48;
    background: linear-gradient(102.4deg, #45AB48 4.77%, #46c74b 112%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    border-radius: 8px 0 0 8px;
}

.login-right {
    width: 50%;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-form {
    width: 100%;
    max-width: 500px;
}

/* Responsive styles for tablets (768px - 991px) */
@media (max-width: 991px) {
    .login-container {
        min-height: 500px;
    }
    
    .login-left, .login-right {
        padding: 30px;
    }
    
    .login-left img {
        width: 150px !important;
    }
    
    .login-form h1 {
        font-size: 28px !important;
    }
    
    .login-form p {
        font-size: 14px !important;
    }
}

/* Responsive styles for mobile phones (up to 767px) */
@media (max-width: 767px) {
    .login-container {
        flex-direction: column;
        min-height: auto;
    }
    
    .login-left {
        width: 100%;
        border-radius: 8px 8px 0 0;
        padding: 20px;
        min-height: 150px;
    }
    
    .login-right {
        width: 100%;
        padding: 25px 20px;
    }
    
    .login-left img {
        width: 120px !important;
    }
    
    .login-form h1 {
        font-size: 24px !important;
    }
    
    .login-form p {
        font-size: 14px !important;
        margin-top: 8px !important;
    }
    
    .mb-11 {
        margin-bottom: 1.5rem !important;
    }
}

/* Small mobile phones (up to 480px) */
@media (max-width: 480px) {
    .login-container {
        width: 95%;
        margin: 15px;
    }
    
    .login-left {
        min-height: 120px;
        padding: 15px;
    }
    
    .login-right {
        padding: 20px 15px;
    }
    
    .login-left img {
        width: 100px !important;
    }
}