* { box-sizing: border-box; }

body {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  margin: 0;
  background: var(--bg);
  color: var(--text);
}

/* gelbe Akzentlinie oben */
body::before{
  content:"";
  display:block;
  height: 6px;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
}

h1 {
  font-size: 26px;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  font-weight: 800;
}

h2 {
  font-size: 16px;
  margin: 0 0 8px;
  font-weight: 750;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 14px;
  margin: 14px 0 8px;
  font-weight: 700;
}

label {
  font-size: 13px;
  color: #2b2b33;
  font-weight: 650;
}

input,
textarea,
select {
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font: inherit;
  background: #fff;
  color: var(--text);
  outline: none;
  transition: border-color .12s ease, box-shadow .12s ease;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(245, 200, 76, .65);
  box-shadow: 0 0 0 4px rgba(245, 200, 76, .25);
}

textarea {
  min-height: 96px;
  resize: vertical;
}
