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



@layer components {
  .btn-primary-outline {
    @apply py-2 px-5 bg-white border border-red-500 text-red-500 hover:bg-red-500 hover:text-white font-medium;
  }

  .btn-primary-round {
    @apply bg-white border border-red-500 text-red-500 hover:bg-red-500 hover:text-white font-medium;
  }

  .btn-primary {
    @apply py-2 px-5 bg-red-700 text-white hover:bg-red-800 hover:text-white font-medium;
  }

  .btn-default-outline {
    @apply bg-transparent border border-gray-500 text-gray-400 hover:bg-gray-500 hover:text-gray-400 font-medium;
  }

  .form-control {
    @apply bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5 dark:bg-gray-600 dark:border-gray-500 dark:placeholder-gray-400 dark:text-white;
  }


  label {
    @apply block mb-2 text-sm font-medium text-gray-900 dark:text-white;
  }
}


/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */

 *, html {
    scroll-behavior: smooth !important;
}
