/* Page-specific styles for the auth screens (sign in / sign up).
   Pairs with resources/views/layouts/guest.blade.php */

/* "marching" route line behind the brand panel copy — a subtle nod to
   live trip/fleet tracking rather than a generic decorative gradient. */
.route-path {
    animation: route-flow 4s linear infinite;
}

@keyframes route-flow {
    to {
        stroke-dashoffset: -160;
    }
}

@media (prefers-reduced-motion: reduce) {
    .route-path {
        animation: none;
    }
}