@import "tailwindcss";

@theme {
  --color-brand-bg: #1a1a1a;
  --color-brand-surface: #242424;
  --color-brand-surface-light: #2e2e2e;
  --color-brand-green: #3d6b5e;
  --color-brand-green-light: #4a7d6e;
  --color-brand-gold: #b8860b;
  --color-brand-copper: #d4a847;
  --color-brand-muted: #a0a0a0;
  --color-brand-border: #333333;
  --color-brand-border-light: #444444;
}

body {
  background-color: #1a1a1a;
  color: #ffffff;
}

hr {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, #b8860b, #d4a847, #b8860b, transparent);
  margin: 2rem 0;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"],
input[type="date"],
input[type="datetime-local"],
input[type="url"],
input[type="time"],
textarea,
select {
  background-color: #2a2a2a;
  border: 1px solid #444444;
  color: #ffffff;
  border-radius: 0.375rem;
  padding: 0.5rem 0.75rem;
}

input::placeholder,
textarea::placeholder {
  color: #666666;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #3d6b5e;
  box-shadow: 0 0 0 2px rgba(61, 107, 94, 0.3);
}
