/* Zoho image CAPTCHA wrapper, integrated with RESET's form rhythm. */
.reset-zoho-captcha {
  display: grid;
  gap: 10px;
  margin: 24px 0 20px;
  padding-top: 20px;
  border-top: 1px solid var(--reset-line);
}

.reset-zoho-captcha__label {
  margin: 0;
  color: var(--reset-muted);
  font: 500 0.7rem/1.35 var(--reset-font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reset-zoho-captcha__visual {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reset-zoho-captcha__image {
  display: block;
  width: 168px;
  height: 42px;
  border: 1px solid var(--reset-line);
  background: #fff;
  object-fit: contain;
}

.reset-zoho-captcha__reload {
  min-height: 42px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--reset-ink);
  cursor: pointer;
  font: 500 0.72rem/1.2 var(--reset-font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.reset-zoho-captcha__reload:hover,
.reset-zoho-captcha__reload:focus-visible {
  color: var(--reset-accent);
}

.reset-zoho-captcha__input {
  max-width: 260px;
}

.reset-zoho-captcha__error {
  margin: 0;
  color: var(--reset-danger);
  font-size: 0.86rem;
  line-height: 1.45;
}

.reset-zoho-captcha__error[hidden] {
  display: none;
}

@media (max-width: 420px) {
  .reset-zoho-captcha__visual {
    align-items: flex-start;
  }

  .reset-zoho-captcha__image {
    width: 146px;
  }
}
