/* Matches the toxictuning.com marketing site's design tokens
   (see app/globals.css and components/Navbar.tsx / Footer.tsx there):
   dark background, red accent, sharp corners, uppercase tracking-wide type. */

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #111; }
::-webkit-scrollbar-thumb { background: #e00000; border-radius: 3px; }

.form-card form p {
  margin: 0 0 16px;
}

.form-card form label {
  display: block;
  color: #888888;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-card form input,
.form-card form select,
.form-card form textarea {
  width: 100%;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  color: #ffffff;
  padding: 12px 16px;
  font-size: 14px;
  box-sizing: border-box;
}

.form-card form input:focus,
.form-card form select:focus,
.form-card form textarea:focus {
  outline: none;
  border-color: #e00000;
}

.form-card form ul.errorlist {
  color: #e00000;
  font-size: 12px;
  list-style: none;
  padding: 0;
  margin: -8px 0 8px;
}

.btn-primary {
  display: inline-block;
  background: #e00000;
  color: #ffffff;
  border: none;
  padding: 14px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.15s ease-out;
}

.btn-primary:hover {
  background: #c00000;
}
