 /* --- VARIABEL & GLOBAL STYLES --- */
        :root {
            --primary-color: #0091ce;
            --primary-hover: #0077a8;
            --light-bg: #f4f7f6;
            --dark-text: #333;
            --white: #ffffff;
            --border-color: #ddd;
            --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--light-bg);
            color: var(--dark-text);
            height: 100vh;
            overflow: hidden;
        }

        /* --- LAYOUT UTAMA --- */
        .container {
            display: flex;
            height: 100%;
        }

        /* --- SISI KIRI (BRANDING) - UNTUK DESKTOP --- */
        .left-side {
            flex: 1;
            background-color: var(--primary-color);
            color: var(--white);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 40px;
            text-align: center;
            box-shadow: var(--shadow);
        }

        .left-side .logo {
            width: 120px;
            height: 120px;
            background-color: var(--white);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        }

        .left-side .logo i {
            font-size: 60px;
            color: var(--primary-color);
        }

        .left-side h1 {
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1.2;
        }

        /* --- SISI KANAN (FORM LOGIN) --- */
        .right-side {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
            background-color: var(--white);
        }

        .form-container {
            width: 100%;
            max-width: 400px;
        }

        .form-container h2 {
            text-align: center;
            margin-bottom: 30px;
            color: var(--dark-text);
            font-weight: 600;
        }

        .form-group {
            margin-bottom: 20px;
            position: relative;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #555;
        }
        
        .form-group i {
            position: absolute;
            right: 15px;
            top: 42px;
            color: #aaa;
        }

        .form-group input {
            width: 100%;
            padding: 12px 15px;
            padding-right: 40px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .form-group input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(0, 145, 206, 0.2);
        }

        .login-btn {
            width: 100%;
            padding: 12px;
            background-color: var(--primary-color);
            color: var(--white);
            border: none;
            border-radius: 8px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s ease;
            margin-top: 10px;
        }

        .login-btn:hover {
            background-color: var(--primary-hover);
        }

.text-kuning{
    color:yellow;
}


        /* --- RESPONSIVE DESIGN UNTUK HANDPHONE --- */
        @media (max-width: 768px) {
            .container {
                flex-direction: column;
            }

            .left-side {
                display: none; /* Sembunyikan sisi kiri di mobile */
            }

            .right-side {
                /* Pastikan form di tengah layar handphone */
                flex: none;
                width: 100%;
                height: 100vh;
                justify-content: center;
                align-items: center;
            }
        }