/* Custom style overrides for Admin Auth */
.auth-glow-1 {
    animation: float-slow 8s ease-in-out infinite;
}

.auth-glow-2 {
    animation: float-slow 8s ease-in-out infinite 2s;
}

@keyframes float-slow {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}
