/* Global Styles */
body { 
    font-family: 'Inter', sans-serif; 
}

.material-symbols-outlined { 
    font-variation-settings: 'wght' 400, 'FILL' 0, 'GRAD' 0, 'opsz' 24; 
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
}

.glass-panel { 
    background: rgba(255, 255, 255, 0.8); 
    backdrop-filter: blur(24px); 
}

.ambient-shadow { 
    box-shadow: 0 12px 40px rgba(25, 28, 30, 0.06); 
}

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

.custom-scrollbar::-webkit-scrollbar { 
    width: 6px; 
}

.custom-scrollbar::-webkit-scrollbar-track { 
    background: transparent; 
}

.custom-scrollbar::-webkit-scrollbar-thumb { 
    background: #e2e8f0; 
    border-radius: 10px; 
}

.parallax-bg {
    transition: transform 0.1s ease-out;
    will-change: transform;
}

/* Auth / 2FA Specific Global utilities */
.otp-input:focus {
    border-bottom: 2px solid #004191;
    outline: none;
}
