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

@layer components {
  .btn-primary {
    @apply py-2 px-4 bg-blue-200;
  }

  .btn-alert {
    @apply bg-red-500 text-white px-4 py-2 rounded;
  }

  label {
    @apply block font-medium;
  }

  input {
    @apply block;
  }

  input[type="submit"] {
    @apply bg-blue-500 text-white px-4 py-2 rounded;
  }

  .field {
    @apply mb-4;
  }
}
