/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps.
 *
 * All styling is now handled by Tailwind CSS (app/assets/tailwind/application.css).
 * This file contains only minimal utility styles that work alongside Tailwind.
 */

/* Pulsing animation for active validation steps */
@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(37, 99, 235, 0);
  }
}

.animate-step-pulse {
  animation: pulse 2s infinite;
}
