/* Predicto Login Page external styles (animations + autofill fixes) */

/* Animations */
@keyframes fade-up { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fade-right { from { opacity: 0; transform: translateX(8px); } to { opacity: 1; transform: translateX(0); } }

/* Autofill color fix (no Tailwind @layer dependency) */
.autofill-fix:-webkit-autofill,
.autofill-fix:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff;
  transition: background-color 5000s ease-in-out 0s;
}

@media (prefers-reduced-motion: reduce) {
  *:not([data-allow-motion]) {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
