body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
    height: 100vh;
    overflow: hidden;
}

/* ========================================
   BRANDING SECTION (KIRI)
   ======================================== */
.login-brand-section {
    background-color: #1e293b;
    background-image: url('https://blogger.googleusercontent.com/img/a/AVvXsEgV8lyx-zqqmE7wkE9WJ5GJJjP0J8zOSX9YigHhsGCSEeAY_rQEoS9aE2v5AxfVeP9nALAherdK_Vri4DjoB46WgiWuFZHvDl1_XOEulz540_dsHTwxkRWZHOIFuIm7yJ4C5Ld0vPa-xpalN0Fi-ayd7gjyEPHNV-dEXbdFhVtIdprvnptg1yb57GFz=w640-h480');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
    color: white;
}

.login-brand-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.8) 100%);
    z-index: 1;
}

.brand-content {
    position: relative;
    z-index: 2;
}

/* .login-brand-section {
    background-color: #1e293b;
    background-image: url('https://blogger.googleusercontent.com/img/a/AVvXsEgV8lyx-zqqmE7wkE9WJ5GJJjP0J8zOSX9YigHhsGCSEeAY_rQEoS9aE2v5AxfVeP9nALAherdK_Vri4DjoB46WgiWuFZHvDl1_XOEulz540_dsHTwxkRWZHOIFuIm7yJ4C5Ld0vPa-xpalN0Fi-ayd7gjyEPHNV-dEXbdFhVtIdprvnptg1yb57GFz=w640-h480');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
    color: white;
}

.login-brand-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.8) 100%);
    z-index: 1;
}

.brand-content {
    position: relative;
    z-index: 2;
} */

.login-form-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background-color: #fff;
    overflow-y: auto;
}

.login-card {
    width: 100%;
    max-width: 420px;
    padding: 0 1rem;
}

.form-control {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background-color: #f8fafc;
}

.form-control:focus {
    background-color: #fff;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #94a3b8;
    z-index: 10;
}

@media (max-width: 991.98px) {
    .login-brand-section {
        display: none;
    }
}


/* ========================================
   LOGO IMAGE — Form (mobile)
   ======================================== */
.brand-logo-img-mobile {
    height: 56px;
    width: auto;
    object-fit: contain;
}

/* ========================================
   LOGO IMAGE — Branding (desktop)
   ======================================== */
.brand-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    /* agar terlihat putih di atas bg gelap */
    transition: filter 0.2s ease;
}

.brand-logo-row {
    gap: 0.5rem;
}

/* ========================================
   LOGO IMAGE — Form (mobile)
   ======================================== */
.brand-logo-img-mobile {
    height: 56px;
    width: auto;
    object-fit: contain;
}