.form-spinner-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.sound-bars-spinner {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0.5rem;
  height: 100px;
}

.sound-bar-spinner {
  width: 8px;
  border-radius: 9999px;
  animation: soundWave 1.2s ease-in-out infinite;
}

.sound-bar-spinner:nth-child(1) {
  background: linear-gradient(to top, #c084fc, #9333ea);
  animation-delay: 0s;
}

.sound-bar-spinner:nth-child(2) {
  background: linear-gradient(to top, #f9a8d4, #ec4899);
  animation-delay: 0.1s;
}

.sound-bar-spinner:nth-child(3) {
  background: linear-gradient(to top, #fb923c, #ea580c);
  animation-delay: 0.2s;
}

.sound-bar-spinner:nth-child(4) {
  background: linear-gradient(to top, #f9a8d4, #ec4899);
  animation-delay: 0.3s;
}

.sound-bar-spinner:nth-child(5) {
  background: linear-gradient(to top, #c084fc, #9333ea);
  animation-delay: 0.4s;
}

@keyframes soundWave {
  0%, 100% {
    height: 40px;
  }
  50% {
    height: 80px;
  }
}

.spinner-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: #9333ea;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}


