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

@layer utilities {
  .error {
    @apply text-red-700;
  }

  .button_to {
    @apply inline;
  }

  .page {
    @apply p-4;
  }
}

.btn-danger {
  @apply border rounded-sm p-3 text-white bg-red-700 hover:bg-red-800;
}

.btn-default {
  @apply border rounded-sm p-3 text-base hover:bg-gray-100;
}

label a {
  @apply text-link underline hover:text-blue-700;
}
