/*
 * 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.
 */

/* Required field indicator */
label.required::after {
  content: " *";
  color: #ef4444;
}

/* Submit button spinner */
@keyframes campaign-spinner {
  to {
    transform: rotate(360deg);
  }
}
.campaign-submit-spinner {
  animation: campaign-spinner 0.75s linear infinite;
}

/* Shine animation for text */
@keyframes shine {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

.shine-text {
  background-color: black;
  background-image: linear-gradient(
    270deg,
    transparent 0%,
    transparent 40%,
    rgba(255, 169, 50, 0.956) 50%,
    transparent 60%,
    transparent 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color:rgba(25, 18, 0, 0.50);
  animation: shine 10s ease-in-out;
}
