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

/*

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

*/
/*
 * 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.
 *


 */
 :root {
  --gray: #e5e7eb;
  --text-gray: #4b5563;
  --bg-gray: #e5e7eb;
  --brand-color: #fff;
  --white: #fff;
  --blue: #3b82f6;
  --color-success: #10A02E;
  --color-error: #E9133E;
}

.background{
  background-color: var(--bg-gray);
}

.text-color{
  color: var(--text-gray);
}

.white{
  background-color: var(--white);
}

.brand-background{
  background-color: var(--brand-color);
}

.brand-text-color{
  color: var(--white);
  mix-blend-mode: screen;
}

.custom-height {
  max-height: 700px;
  overflow-y: auto;
}

.border-blue {
  border-color: var(--blue);
}

.required::after {
  content: "*";
  color: red;
  margin-left: 3px;
}

.shadow-glow {
  box-shadow: 0px 2px 8px 2px var(--brand-color);
}

.set-width{
  width: 450px;
}

.brand-icon-color {
  color: var(--brand-color);
}
