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

@layer utilities {
  .col-centered {
    margin-left: auto;
    margin-right: auto;
  }
}

body {
  font-family: "Montserrat", sans-serif;
}

html,
body {
  font-family: "Montserrat", sans-serif !important;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

*,
*::before,
*::after,
button,
input,
textarea,
select {
  font-family: inherit !important;
}

#search_brands,
#resources,
#why-boycott {
  scroll-margin-top: 75px;
}

#suggestion-modal-panel form {
  display: grid;
  gap: 18px;
}

#suggestion-modal-panel label {
  display: grid;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  color: #001524;
}

#suggestion-modal-panel input,
#suggestion-modal-panel textarea {
  width: 100%;
  border: 3px solid #001524;
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 18px;
  font-weight: 700;
  color: #001524;
  background: transparent;
  outline: none;
}

#suggestion-modal-panel textarea {
  min-height: 140px;
  resize: vertical;
}

#suggestion-modal-panel input:focus,
#suggestion-modal-panel textarea:focus {
  border-color: #E84545;
  box-shadow: 0 0 0 4px rgba(232, 69, 69, 0.2);
}

#suggestion-modal-panel .suggestion-helper-text {
  font-size: 14px;
  font-weight: 700;
  color: #6b7280;
  margin-top: -6px;
}

#suggestion-modal-panel button[type="submit"] {
  border: 4px solid #E84545;
  background: #E84545;
  color: #000;
  border-radius: 999px;
  padding: 14px 18px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 200ms ease, background-color 200ms ease, border-color 200ms ease;
}

#suggestion-modal-panel button[type="submit"]:hover {
  background: #c93939;
  border-color: #c93939;
  transform: translateY(-1px);
}

