/* ==========================================================================
   GAYA KHUSUS HALAMAN LOGIN (SPLIT SCREEN LAYOUT)
   ========================================================================== */

/* Khusus body halaman login */
.login-body {
    background-color: #f1f5f9;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
}

/* Container utama login (Gaya Split) */
.login-container {
    display: flex;
    max-width: 900px;
    width: 90%;
    height: 550px;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Panel Samping Kiri (Informasi/Visual Biru) */
.login-sidebar {
    flex: 1;
    background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #ffffff;
}

.login-logo-big {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.login-logo-big::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 4px;
    background-color: #38bdf8;
    border-radius: 2px;
}

.login-sidebar p {
    color: #bfdbfe;
    font-size: 15px;
    line-height: 1.6;
}

.sidebar-footer {
    font-size: 12px;
    color: #93c5fd;
}

/* Panel Form Kanan */
.login-form-box {
    flex: 1.2;
    padding: 50px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-form-box h2 {
    font-size: 26px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.login-subtitle {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 30px;
}

/* Opsi tambahan form (Remember me & Forgot password) */
.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 13px;
}

.remember-me {
    color: #475569;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.forgot-link {
    color: #1e40af;
    text-decoration: none;
    font-weight: 500;
}

.forgot-link:hover {
    text-decoration: underline;
}

/* Tombol Submit Login Khusus */
.btn-login {
    width: 100%;
    background: #1e40af;
    color: white;
    padding: 12px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(30, 64, 175, 0.2);
}

.btn-login:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(30, 64, 175, 0.3);
}

/* Responsif untuk layar HP/Tablet kecil */
@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
        height: auto;
        max-width: 450px;
    }
    .login-sidebar {
        padding: 30px;
        gap: 20px;
    }
    .login-form-box {
        padding: 35px 30px;
    }
}
