/* assets/css/auth-style.css */

/* Remove blue highlight on mobile touch */
* {
    -webkit-tap-highlight-color: transparent;
}

/* Prevent overscroll bounce on some mobile browsers */
body {
    overscroll-behavior-y: none;
}

/* Custom Animation Keyframes */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.99); }
    to { opacity: 1; transform: scale(1); }
}

.animate-fade-in {
    animation: fadeIn 0.3s ease-out forwards;
}

/* Custom Scrollbar Styling */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background-color: rgba(156, 163, 175, 0.5);
    border-radius: 20px;
}