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

.antispam-captcha {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  margin: 0 0 24px;
}

.antispam-captcha__label {
  color: inherit;
  font-size: 14px;
  line-height: 1.3;
}

.antispam-captcha__input {
  box-sizing: border-box;
  width: 88px;
  min-width: 88px;
  padding: 9px 10px;
  border: 1px solid #777;
  border-radius: 4px;
  color: #111;
  background: #fff;
  font: inherit;
  text-align: center;
}

.antispam-captcha__input:focus {
  border-color: #111;
  outline: 2px solid rgba(0, 0, 0, 0.15);
  outline-offset: 1px;
}

.antispam-error {
  box-sizing: border-box;
  max-width: 560px;
  margin: 30px auto;
  padding: 30px;
  text-align: center;
}

.antispam-error__text {
  margin: 20px 0;
  font-size: 17px;
  line-height: 1.45;
}

.antispam-error__button {
  cursor: pointer;
}

@media (max-width: 480px) {
  .antispam-captcha {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .antispam-captcha__input {
    width: 100%;
  }
}
