:root {
        --text-main: #1F2937;
        --text-muted: #6B7280;
        --input-bg: #FFFFFF;
        --input-border: #F3F4F6;
        --btn-orange-1: #FFB347;
        --btn-orange-2: #FF7B00;
        --bg-left-top: #03b3ff;
        --bg-left-bottom: #FDFCE6;
    }

    body {
        margin: 0;
        font-family: 'Quicksand', sans-serif;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        background: url('../../../../../public/images/blur.png') center/cover;
        background-size: cover;
    }

    /* MAIN CARD CONTAINER */
    .login-container {
        display: flex;
        width: 95vw;
        max-width: 1200px;
        height: 90vh;
        background: #FFFFFF;
        border-radius: 24px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        gap: 10px;
        padding: 10px;
    }

    /* LEFT PANEL - FORM */
    .left-panel {
        flex: 1;
        background: linear-gradient(180deg, var(--bg-left-top) 0%, var(--bg-left-bottom) 100%);
        border-radius: 16px;
        padding: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        overflow-y: auto;
        position: relative;
        /* background-image: 
            radial-gradient(circle at 15% 10%, rgba(255,255,255,0.8) 0%, transparent 20%),
            radial-gradient(circle at 85% 20%, rgba(255,255,255,0.7) 0%, transparent 25%),
            linear-gradient(180deg, var(--bg-left-top) 0%, var(--bg-left-bottom) 100%); */
    }

    .form-container {
        width: 100%;
        max-width: 360px;
        z-index: 2;
        margin: 20px auto; /* Ubah dari 'auto 0' menjadi '20px auto' agar ada jarak dan tidak terjebak di tengah */
        display: flex;
        flex-direction: column;
    }

    .brand-logo {
        display: flex;
        justify-content: center;
        margin-bottom: 15px; 
    }

    .brand-logo img { 
        width: 370px; 
        max-width: 100%; 
        height: auto;
        /* Efek shadow yang mengikuti bentuk logo */
        filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.15));
        /* Tambahan efek transisi jika ingin logonya bereaksi saat di-hover (opsional) */
        transition: filter 0.3s ease, transform 0.3s ease;
    }

    /* (Opsional) Logo akan sedikit terangkat dan bayangannya membesar saat disentuh kursor */
    .brand-logo img:hover {
        transform: translateY(-3px);
        filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.25));
    }

    .text-center { text-align: center; }

    .left-panel h1 {
        font-size: 24px; /* Disesuaikan sedikit agar tidak terlalu besar */
        font-weight: 700;
        color: var(--text-main);
        margin: 0 0 20px 0;
    }

    .left-panel p.subtitle {
        font-size: 14px;
        color: #4B5563;
        margin-bottom: 35px;
        line-height: 1.5;
    }

    /* SLOGAN HEADER */
    .header-slogan {
        width: 100%;
        max-width: 700px;
        margin-bottom: 30px;
        text-align: center;
    }
    .header-slogan img {
        max-width: 100%;
        height: auto;
        /* Jika gambar slogan memiliki background hitam, gunakan mix-blend-mode untuk menghilangkannya di layar putih/terang. 
           Idealnya gunakan format PNG transparan asli */
        mix-blend-mode: screen; 
    }

    /* PERBAIKAN STRUKTUR FORM */
    .input-group {
        margin-bottom: 20px;
        width: 100%;
    }

    .input-group label {
        display: block;
        font-size: 14px;
        font-weight: 600;
        color: var(--text-main);
        margin-bottom: 8px;
        text-align: left;
    }

    .input-wrapper {
        position: relative;
        width: 100%;
    }

    .input-wrapper input {
        width: 100%;
        padding: 14px 16px;
        background: var(--input-bg);
        border: 1px solid var(--input-border);
        border-radius: 10px;
        font-size: 14px;
        color: var(--text-main);
        box-sizing: border-box;
        outline: none;
        transition: all 0.2s ease;
    }

    .input-wrapper input:focus {
        outline: none;
        border-color: var(--btn-orange-1);
        box-shadow: 0 0 0 3px rgba(255, 179, 71, 0.15);
    }

    .eye-icon {
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        color: #9CA3AF;
        cursor: pointer;
    }

    /* BUTTON */
    .btn-submit {
        width: 100%;
        padding: 15px;
        background: linear-gradient(to right, var(--btn-orange-1), var(--btn-orange-2));
        color: white;
        border: none;
        border-radius: 10px;
        font-size: 16px;
        font-weight: 700;
        cursor: pointer;
        margin-top: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        box-shadow: 0 6px 15px rgba(255, 123, 0, 0.25);
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .btn-submit:hover { transform: translateY(-2px); }

    .btn-secondary {
        background: #EF4444;
        box-shadow: 0 6px 15px rgba(239, 68, 68, 0.25);
    }

    .login-link {
        text-align: center;
        font-size: 14px;
        color: var(--text-muted);
        margin-top: 20px;
    }
    .login-link a {
        color: var(--text-main);
        font-weight: 700;
        text-decoration: underline;
    }

    /* RIGHT PANEL - ILLUSTRATION */
    .right-panel {
        flex: 1.2;
        /* background: url('../images/bg.jpg') center/cover; */
        background: url('../../../../../public/images/bg.jpg') center/cover;
        background-position: right;
        border-radius: 16px;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 50px;
        overflow: hidden;
    }

    .right-overlay {
        position: absolute;
        bottom: 0; left: 0; right: 0;
        height: 60%;
        background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
        z-index: 1;
    }

    .right-content {
        margin-bottom: -50px;
        z-index: 2;
        color: white;
    }

    .right-content h2 {
        font-size: 32px;
        font-weight: 700;
        margin: 0 0 15px 0;
        letter-spacing: -0.5px;
    }

    .right-content p {
        font-size: 15px;
        color: #E5E7EB;
        line-height: 1.6;
        max-width: 90%;
        margin-bottom: 25px;
    }

    /* MASKOT */
    .mascot-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        
        /* Trik Utama untuk Anti-Geser saat di-Zoom */
        object-fit: contain; 
        object-position: bottom center; 
        
        z-index: 5;
        filter: drop-shadow(-20px 15px 30px rgba(0,0,0,0.7));
        pointer-events: none;
    }

    /* RESPONSIVE */
    @media (max-width: 900px) {
        .login-container { 
            flex-direction: column; 
            width: 100vw; 
            height: auto;          /* Ubah dari 100vh agar bisa memanjang */
            min-height: 100vh;     /* Tetap minimal seukuran layar */
            border-radius: 0; 
            padding: 0; 
            gap: 0;
        }
        .mascot-img { display: none; }
        .left-panel { 
            border-radius: 0; 
            padding: 30px 20px 50px 20px; /* Tambahkan padding bawah yang longgar */
            height: auto;          /* Pastikan tinggi panel fleksibel */
            overflow-y: visible;   
        }
        .right-panel { display: none; }
    }


