
.shadow-glow-button[data-v-370f8772] {
  padding: 10px 20px;
  border: none;
  font-size: 15px;
  color: #fff;
  border-radius: 7px;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
  transition: 0.5s;
  transition-property: box-shadow;
  cursor: pointer;
  position: relative;
}
.shadow-glow-button[data-v-370f8772]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.shadow-glow-button[data-v-370f8772]:hover:not(:disabled) {
  box-shadow: 
    0 0 5px var(--shadow-color),
    0 0 25px var(--shadow-color),
    0 0 50px var(--shadow-color),
    0 0 100px var(--shadow-color) !important;
}
.loading-spinner[data-v-370f8772] {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin-370f8772 0.8s linear infinite;
}
@keyframes spin-370f8772 {
to {
    transform: rotate(360deg);
}
}
