        /* ====================================
           1. RESET DAN FONT DASAR
           ==================================== */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: #1a1a1a;
            line-height: 1.6;
            background-color: #ffffff;
            /* Pastikan tinggi minimal viewport untuk centering */
            min-height: 100vh; 
            display: flex;
            justify-content: center;
            align-items: center;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* ====================================
           2. TATA LETAK UTAMA (2 Kolom)
           ==================================== */
        .register-wrapper {
            display: flex;
            width: 100%;
            height: 100vh; /* Mengambil tinggi penuh viewport */
        }

        /* Kolom Kiri (Gambar) */
        .register-left {
            display: none; /* Sembunyikan di mobile secara default */
            position: relative;
            flex: 1;
            overflow: hidden;
            background-color: #f0f0f0;
        }

        .register-left img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            /* Menggunakan filter brightness(0.7) agar teks branding lebih terlihat */
            filter: brightness(0.7); 
            object-position: 50% 30%; /* Sesuaikan posisi gambar */
        }

        .branding {
            position: absolute;
            bottom: 50%;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            color: white;
            background-color:rgba(255, 255, 255, 0.16);
            z-index: 10;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
        }

        .branding h1 {
            font-size: 36px;
            font-weight: 300;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            margin-bottom: 5px;
        }

        .branding p {
            font-size: 14px;
            letter-spacing: 0.1em;
            font-weight: 500;
        }

        /* Kolom Kanan (Formulir) */
        .register-right {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 40px 20px;
        }

        .register-form-container {
            width: 100%;
            max-width: 400px;
            text-align: left;
        }

        /* Tampilkan kolom kiri di desktop */
        @media (min-width: 768px) {
            .register-left {
                display: block;
            }
            .register-right {
                flex: 1;
            }
        }

        /* ====================================
           3. STYLING FORM (Menggunakan style Login yang konsisten)
           ==================================== */
        .greeting h2 {
            font-size: 28px;
            font-weight: 500;
            margin-bottom: 5px;
        }

        .greeting p {
            font-size: 16px;
            color: #555;
            margin-bottom: 30px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-label {
            display: block;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 8px;
            color: #1a1a1a;
        }

        .form-input {
            width: 100%;
            padding: 12px 15px;
            background-color: #f5f5f5;
            border: 1px solid #f5f5f5; /* Border lembut */
            border-radius: 4px;
            font-size: 16px;
            transition: border-color 0.3s;
        }

        .form-input:focus {
            outline: none;
            border-color: #1a1a1a;
            background-color: white;
        }

        /* Tombol Daftar */
        .btn-register {
            width: 100%;
            background-color: #1a1a1a;
            color: white;
            padding: 12px;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            cursor: pointer;
            margin-top: 10px;
            transition: background-color 0.3s;
        }

        .btn-register:hover {
            background-color: #333333;
        }

        /* Link Bawah */
        .bottom-links {
            text-align: center;
            margin-top: 25px;
            font-size: 14px;
            color: #555;
        }

        .bottom-links a {
            color: #1a1a1a;
            font-weight: 600;
            text-decoration: underline;
        }

        .back-to-home {
            display: block;
            margin-top: 20px;
            font-size: 14px;
            color: #555;
            text-align: center;
        }