@tailwind base;
@tailwind components;
@tailwind utilities;

.loader {
  border-top-color: #6e40fb;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
