/* Add this CSS either in your global styles or in a module */
.spinner {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s ease-in-out infinite;
}

.spinner-btn-lg {
  padding: 16.75px 40px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
