.contact-form label:nth-of-type(4),
.contact-form label:nth-of-type(5),
.captcha-note,
.form-privacy,
.contact-form button {
  grid-column: 1 / -1;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.captcha-note {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem;
  border: 1px solid rgba(236, 242, 235, .17);
  background: rgba(255, 255, 255, .03);
}

.captcha-note > span {
  display: grid;
  place-items: center;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  background: var(--warm);
  color: var(--ink);
  font-weight: 700;
}

.captcha-note p {
  margin: 0;
  color: #d4dfd7;
  font-size: .83rem;
}

@media (max-width: 680px) {
  .contact-form label:nth-of-type(4),
  .contact-form label:nth-of-type(5),
  .captcha-note,
  .form-privacy,
  .contact-form button {
    grid-column: auto;
  }

  .captcha-note {
    align-items: flex-start;
  }
}
