@tailwind base;
@tailwind components;
@tailwind utilities;


@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loader {
  width: 50px;
  height: 50px;
  border: 4px solid #fff;
  border-top: 4px solid blue;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}


