/* 1. Reset Dasar agar Full Screen */
body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* 2. Pembungkus Utama */
.login-container {
    min-height: 100vh;
    width: 100%;
    display: flex;
}

/* 3. Kolom Kiri (Background Gambar) */
.left-side {
    background: linear-gradient(rgba(11, 17, 32, 0.7), rgba(11, 17, 32, 0.8)), 
                url('https://simota.unmura.ac.id/assets/bg/quran.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh; /* Wajib agar gambar sampai bawah */
    display: flex;
    align-items: center;
    padding: 0 60px;
}

/* 4. Kolom Kanan (Background Biru Gelap) */
.bg-dark-blue {
    background-color: #0b1120 !important;
    min-height: 100vh; /* Wajib agar warna biru sampai bawah */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* 5. Card Login (Harus Putih Bersih) */
.login-card {
    background: #ffffff !important;
    border-radius: 25px;
    width: 100%;
    max-width: 450px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    z-index: 5;
}

/* 6. Elemen Pendukung (Icon, Input, Button) */
.icon-box {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
}

.logo-placeholder {
    padding: 10px;
    background: #f8f9fa;
    border-radius: 12px;
    display: inline-block;
}

.form-control {
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #dee2e6;
}

.input-group-text {
    background-color: #ffffff;
    border-radius: 10px;
    border-right: none;
}

.btn-success {
    background-color: #009669;
    border: none;
    border-radius: 12px;
    padding: 12px;
    font-weight: 600;
    width: 100%;
}

.btn-success:hover {
    background-color: #059669;
}

.x-small {
    font-size: 0.75rem;
}

/* 7. Pengaturan Mobile */
@media (max-width: 991px) {
    .left-side {
        display: none !important; /* Sembunyikan gambar di HP */
    }
    .bg-dark-blue {
        padding: 40px 20px;
    }
}