/* Optional helpers for sites embedding this instance. Served at /kit/cap-kit.css.
 *
 * Deliberately unopinionated about colour: the widget already exposes --cap-*
 * custom properties, and each site sets those to its own palette. Setting them
 * here would mean six sites fighting one stylesheet.
 *
 *   cap-widget {
 *     --cap-background: #121212;
 *     --cap-border-color: #333;
 *     --cap-spinner-color: #00E5FF;
 *   }
 */

cap-widget {
  display: block;
}

/* Honeypot. Off screen rather than display:none or visibility:hidden, which are
 * the two rules a bot checks before deciding to skip a field. aria-hidden and
 * tabindex="-1" on the input keep it away from people. */
.cap-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
