:root {
    --warna-oranye: #F28C28; /* Oranye hangat dari logo S */
    --warna-ungu: #9381AD; /* Ungu lavender dari logo B */
    --warna-abu: #A0A2AC; /* Abu-abu dari logo L */
    
    /* Variabel nama lama agar tidak terlalu banyak yang harus diubah, mapping ke warna baru */
    --biru-utama: var(--warna-oranye); 
    --kuning-logo: var(--warna-ungu);
    
    --warna-latar: #F8F9FB; /* Latar off-white yang lebih modern */
    --latar-kartu: rgba(255, 255, 255, 0.9);
    --teks-utama: #2D3748;
    --teks-redup: #718096;
    --warna-batas: #E2E8F0;
    
    /* Warna bentuk-bentuk dekoratif (transparan untuk glowing orbs) */
    --bentuk-merah: rgba(147, 129, 173, 0.4); /* Mapping ke Ungu */
    --bentuk-hijau: rgba(160, 162, 172, 0.4); /* Mapping ke Abu-abu */
    --bentuk-biru-gelap: rgba(242, 140, 40, 0.4); /* Mapping ke Oranye */
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--warna-latar);
    color: var(--teks-utama);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Mencegah scrollbar agar bentuk tetap rapi di bawah */
}

/* Bagian Header Atas */
.header-atas {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: none;
    color: var(--teks-utama);
    padding: 1.1rem 1.5rem;
    position: relative;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.header-konten {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.logo-img {
    height: 100px;
    width: auto;
    vertical-align: middle;
}

/* Glowing Orbs for Modern Design */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: screen;
}

.wadah-logo h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.logo-bridge {
    color: var(--warna-ungu);
}

.logo-sign {
    color: var(--warna-oranye);
    position: relative;
}

.logo-sign::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--warna-oranye);
    border-radius: 2px;
    transform: rotate(-1deg);
}

.subjudul {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--teks-redup);
    margin: 0;
}

/* Area Konten Utama */
.konten-utama {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Kartu Pilihan Masuk */
.kartu-masuk {
    background-color: var(--latar-kartu);
    width: 100%;
    max-width: 520px;
    padding: 2.5rem 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05), 0 5px 15px rgba(0, 0, 0, 0.03);
    z-index: 10;
    backdrop-filter: blur(10px);
}

.judul-pilih-peran {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--teks-utama);
}

.pilihan-peran {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tombol-peran {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    border: 1px solid var(--warna-batas);
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    background-color: white;
}

.tombol-peran:hover {
    border-color: var(--warna-ungu);
    box-shadow: 0 8px 20px rgba(147, 129, 173, 0.15);
    transform: translateY(-3px);
}

.ikon-peran {
    font-size: 1.5rem;
    margin-right: 1.25rem;
    color: var(--teks-utama);
    display: flex;
    align-items: center;
    justify-content: center;
}

.teks-peran {
    flex: 1;
}

.teks-peran h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.teks-peran p {
    font-size: 0.85rem;
    color: var(--teks-redup);
}

.panah-peran {
    font-size: 1.25rem;
    color: var(--teks-utama);
}

/* Bentuk-bentuk Dekoratif Geometris (Material Design Vibe) */
.bentuk {
    position: absolute;
    z-index: 1;
    animation: float 8s ease-in-out infinite;
    mix-blend-mode: multiply;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(3deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes float-reverse {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(12px) rotate(-3deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.bentuk-anim-1 { animation: float 7s ease-in-out infinite; }
.bentuk-anim-2 { animation: float-reverse 8s ease-in-out infinite; }

/* Sisi Kiri */
.bentuk-kiri-utama {
    background-color: var(--bentuk-merah); /* Ungu */
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -150px;
    border-radius: 50%;
    filter: blur(100px);
}

.bentuk-kiri-aksen {
    background-color: var(--bentuk-hijau); /* Abu-abu */
    width: 250px;
    height: 250px;
    top: 50px;
    left: 10%;
    border-radius: 50%;
    filter: blur(80px);
}

/* Sisi Kanan */
.bentuk-kanan-utama {
    background-color: var(--bentuk-biru-gelap); /* Oranye */
    width: 450px;
    height: 450px;
    top: -50px;
    right: -100px;
    border-radius: 50%;
    filter: blur(120px);
}

.bentuk-kanan-aksen {
    background-color: var(--bentuk-merah); /* Ungu */
    width: 300px;
    height: 300px;
    bottom: 50px;
    right: 15%;
    border-radius: 50%;
    filter: blur(90px);
}

/* Gaya Form Login */
.tombol-kembali {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--teks-redup);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.tombol-kembali:hover {
    color: var(--biru-utama);
}

.lencana-peran {
    display: inline-block;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.lencana-biru {
    background-color: #FDE3C8;
    color: var(--biru-utama);
}

.judul-login {
    text-align: left;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--teks-utama);
}

.form-login {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.grup-input {
    display: flex;
    align-items: center;
    border: 1px solid var(--warna-batas);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    background-color: white;
    transition: border-color 0.3s ease;
}

.grup-input:focus-within {
    border-color: var(--biru-utama);
}

.ikon-input {
    color: var(--teks-utama);
    font-size: 1.25rem;
    margin-right: 0.75rem;
    display: flex;
    align-items: center;
}

.grup-input input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 0.95rem;
    color: var(--teks-utama);
    font-family: inherit;
}

.grup-input input::placeholder {
    color: var(--teks-redup);
}

.tombol-utama {
    background: linear-gradient(135deg, var(--warna-oranye) 0%, #E07A1F 100%);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    box-shadow: 0 4px 15px rgba(242, 140, 40, 0.3);
}

.tombol-utama:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(242, 140, 40, 0.4);
}

/* Gaya Tambahan untuk Error dan Lupa Kata Sandi */
.kotak-error {
    background-color: #FCE8E8; /* Merah muda muda */
    color: #D32F2F; /* Merah gelap */
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-size: 0.95rem;
    border: 1px solid #F5C6C6;
    margin-bottom: 1.25rem;
}

.tautan-lupa-sandi {
    color: var(--biru-utama);
    font-weight: 700;
    text-decoration: underline;
    display: block;
    margin-top: 0.25rem;
}

.subjudul-login {
    font-size: 0.95rem;
    color: var(--teks-redup);
    margin-bottom: 1.5rem;
    margin-top: -1rem;
}

.grup-input-abu {
    background-color: #E5E7EB;
    border-color: #D1D5DB;
}

.grup-input-abu input {
    background-color: transparent;
}

.teks-prefix {
    font-weight: 600;
    margin-right: 0.75rem;
    color: var(--teks-utama);
    font-size: 0.95rem;
}

.teks-bantuan {
    font-size: 0.85rem;
    color: var(--teks-redup);
    margin-bottom: 0.5rem;
    text-align: left;
}

