.gestinem-contact-form-wrap {
  --gestinem-form-navy: #102a43;
  --gestinem-form-blue: #2f6f9f;
  --gestinem-form-orange: #ee7a2d;
  --gestinem-form-line: #cbd5e1;
  --gestinem-form-muted: #52677b;
}

.gestinem-contact-form { margin-top: 1.5rem; }
.gestinem-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem 1.25rem; }
.gestinem-contact-form p { margin: 0 0 1.15rem; }
.gestinem-contact-form label { display: block; margin-bottom: .4rem; color: var(--gestinem-form-navy); font-weight: 700; }
.gestinem-contact-form :where(input:not([type="checkbox"]), select, textarea) {
  box-sizing: border-box;
  width: 100%;
  border: 1px solid var(--gestinem-form-line);
  border-radius: .65rem;
  background: #fff;
  color: #172b3d;
  font: inherit;
  padding: .8rem .9rem;
}
.gestinem-contact-form textarea { resize: vertical; }
.gestinem-contact-form :where(input, select, textarea):focus-visible {
  outline: 3px solid var(--gestinem-form-orange);
  outline-offset: 2px;
  border-color: var(--gestinem-form-blue);
}
.gestinem-form-consent { display: grid; grid-template-columns: 1.25rem 1fr; align-items: start; gap: .6rem; }
.gestinem-form-consent input { width: 1.15rem; height: 1.15rem; margin-top: .2rem; }
.gestinem-form-consent label { font-weight: 400; }
.gestinem-contact-form button {
  border: 0;
  border-radius: 999px;
  background: var(--gestinem-form-orange);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: .85rem 1.5rem;
}
.gestinem-contact-form button:hover { background: #c95512; }
.gestinem-form-help { color: var(--gestinem-form-muted); font-size: .9rem; }
.gestinem-form-notice { margin-bottom: 1.25rem; border-radius: .75rem; padding: 1rem 1.1rem; }
.gestinem-form-notice--success { border-left: 5px solid #15803d; background: #ecfdf3; color: #14532d; }
.gestinem-form-notice--error { border-left: 5px solid #b91c1c; background: #fff1f2; color: #7f1d1d; }
.gestinem-form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

@media (max-width: 680px) {
  .gestinem-form-grid { grid-template-columns: 1fr; gap: 0; }
}
