/*
 * Human Verification Gateway — standalone stylesheet.
 *
 * Lives at the project root (no /assets subdirectory) and every selector
 * is scoped under the "hvg-" prefix so this page can be dropped into any
 * existing site's file tree without colliding with that site's own CSS.
 */

.hvg-body {
  margin: 0;
  min-height: 100vh;
  background: #f1f3f4;
  font-family: "Roboto", "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.hvg-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
}

.hvg-card {
  width: 100%;
  max-width: 440px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30), 0 2px 6px 2px rgba(60, 64, 67, .15);
  padding: 40px 32px;
  box-sizing: border-box;
  text-align: center;
}

/* The visited domain doubles as branding, so this page works unmodified
   on any site — see $_SERVER['HTTP_HOST'] usage in verification.php. */
.hvg-domain {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  color: #202124;
  word-break: break-word;
}

.hvg-subtitle {
  margin: 0 0 28px;
  font-size: 14px;
  line-height: 20px;
  color: #5f6368;
}

.hvg-widget-box {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
  min-height: 78px; /* matches the rendered reCAPTCHA widget height, avoids a layout jump while it loads */
}

.hvg-status {
  margin: 0 0 20px;
  font-size: 13px;
  line-height: 18px;
  color: #5f6368;
}

.hvg-status-error {
  color: #d93025;
}

.hvg-footer-text {
  margin: 0;
  font-size: 13px;
  line-height: 20px;
  color: #5f6368;
}

.hvg-alert {
  margin: 20px 0 0;
  padding: 12px 16px;
  border-radius: 8px;
  background: #fce8e6;
  color: #d93025;
  font-size: 13px;
  line-height: 18px;
}

.hvg-hidden {
  display: none !important;
}

/* Honeypot: visually and semantically hidden from real visitors, but still
   present in the DOM/tab order enough that naive auto-fill bots populate it. */
.hvg-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  left: -9999px !important;
}
