/* VollmerIT: forms styles. Responsive rules stay with their component. */
input {
  font: inherit;
}
textarea {
  font: inherit;
}
input:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 5px;
}
textarea:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 5px;
}
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  background: var(--surface);
}
.contact .lead {
  font-size: 16px;
}
.contact-box {
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--bg);
}
.step-label {
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--accent);
  margin: 0 0 18px;
}
.choices {
  display: grid;
  gap: 10px;
  margin: 20px 0;
}
.choice {
  display: block;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 3px;
  cursor: pointer;
}
.choice:has(input:checked) {
  border-color: var(--accent);
  background: var(--surface);
}
input[type=radio] {
  accent-color: var(--accent);
  margin-right: 10px;
  width: 17px;
  height: 17px;
}
label.field {
  display: block;
  margin: 15px 0;
  font-size: 14px;
}
input[type=text] {
  display: block;
  width: 100%;
  min-width: 0;
  background: var(--surface);
  color: var(--fg);
  border: 1px solid var(--line);
  padding: 12px;
  margin-top: 6px;
  border-radius: 3px;
}
input[type=email] {
  display: block;
  width: 100%;
  min-width: 0;
  background: var(--surface);
  color: var(--fg);
  border: 1px solid var(--line);
  padding: 12px;
  margin-top: 6px;
  border-radius: 3px;
}
textarea {
  display: block;
  width: 100%;
  min-width: 0;
  background: var(--surface);
  color: var(--fg);
  border: 1px solid var(--line);
  padding: 12px;
  margin-top: 6px;
  border-radius: 3px;
}
.back {
  border: 0;
  background: none;
  color: var(--muted);
  padding: 10px;
}
.demo {
  font-size: 12px;
  color: var(--muted);
}
.whatsapp {
  display: inline-block;
  border-bottom: 1px solid var(--accent);
  padding: 7px 0;
  margin-top: 15px;
}
.contact-person {
  width: 95px;
  height: 95px;
  object-fit: cover;
  border-radius: 3px;
  margin-bottom: 25px;
}
@media (max-width:900px) {
  .contact {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width:540px) {
  .contact-box {
    padding: 22px 18px;
  }
}
.contact-box {
  min-width: 0;
}
input {
  touch-action: manipulation;
}
textarea {
  touch-action: manipulation;
}
.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
@media (max-width:700px) {
  .contact {
    gap: 28px;
  }
  .contact-box {
    padding: 24px 20px;
  }
}
.contact {
  position: relative;
}
