/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

/* Turbo loading progress bar — copper accent */
.turbo-progress-bar {
  background-color: #B45309; /* wt-copper */
  height: 3px;
}

/* Disabled button state for form submissions */
button[disabled],
input[type="submit"][disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Login page — fashion image slideshow crossfade */
@keyframes loginSlideshow {
  0%   { opacity: 0; }
  4%   { opacity: 1; }
  20%  { opacity: 1; }
  24%  { opacity: 0; }
  100% { opacity: 0; }
}

.login-slide {
  animation: loginSlideshow 35s infinite;
  opacity: 0;
}

.login-slide:nth-child(1) { animation-delay: 0s; }
.login-slide:nth-child(2) { animation-delay: 7s; }
.login-slide:nth-child(3) { animation-delay: 14s; }
.login-slide:nth-child(4) { animation-delay: 21s; }
.login-slide:nth-child(5) { animation-delay: 28s; }
