body { 
    margin: 0; 
    font-family: ui-sans-serif, system-ui, -apple-system, sans-serif; 
}

/* MARQUEE KUNING MAIZE */
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.marquee-text {
    display: inline-block;
    padding-left: 100%;
    animation: marquee-anim 15s linear infinite;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

@keyframes marquee-anim {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}

.brand-logo-text { 
    font-size: 1.8rem; 
    font-weight: 900; 
    background: linear-gradient(135deg, #eab308 0%, #ca8a04 100%); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    margin-bottom: 1rem; 
    letter-spacing: 1px; 
    text-transform: uppercase; 
}

.dark .brand-logo-text {
    background: linear-gradient(135deg, #fde047 0%, #facc15 100%); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
}

.compact-input-wrapper { 
    position: relative; 
    margin-bottom: 0.85rem; 
    width: 100%; 
}

.password-toggle { 
    position: absolute; 
    right: 15px; 
    top: 50%; 
    transform: translateY(-50%); 
    cursor: pointer; 
}

.hide-scrollbar::-webkit-scrollbar { 
    display: none; 
}

.hide-scrollbar { 
    -ms-overflow-style: none; 
    scrollbar-width: none; 
}

.swal2-popup { 
    border-radius: 1.5rem !important; 
    width: 320px !important; 
    padding: 1.5rem 1.25rem 1.25rem !important; 
}

.swal2-title { 
    font-size: 1.25rem !important; 
    font-weight: 800 !important; 
}

.swal2-html-container { 
    font-size: 0.85rem !important; 
}

.swal2-confirm { 
    border-radius: 0.75rem !important; 
    font-weight: 900 !important; 
}

.swal2-cancel { 
    border-radius: 0.75rem !important; 
    font-weight: 800 !important; 
}

.pb-safe { 
    padding-bottom: calc(1rem + env(safe-area-inset-bottom)); 
}
