html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: #fffefe; /* fondo base de la web */
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Capa que cubre TODA la pantalla por encima de la web */
#captcha-screen {
  position: fixed;
  inset: 0;                 /* top:0; right:0; bottom:0; left:0; */
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fffefe;      /* <- AQUÍ le damos el fondo que quieres */
  z-index: 9999;            /* <- por encima de cualquier cosa de la web */
}

/* Rectángulo estilo Cloudflare */
.captcha-box {
  width: 420px;
  padding: 18px 22px;
  background: #f7f7f7;         /* gris claro del recuadro */
  border: 1px solid #d0d0d0;   /* borde un poco más oscuro */
  box-shadow: 0 2px 3px rgba(0,0,0,0.08);
  border-radius: 0;            /* sin esquinas redondeadas */
}
