body {
  background-color: #f0f0f0;
}


/* Google sign-in button spacing */
.g_id_signin {
  margin: 1.25rem 0;
}


/* "---- OR ----" divider between Google sign-in and the email/password form */
.auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 1rem 0;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  border-top: 1px solid #dee2e6;
}

.auth-divider::before {
  margin-right: 0.75rem;
}

.auth-divider::after {
  margin-left: 0.75rem;
}


/* Terms/Privacy disclosure under the Google sign-in button */
.oauth-terms {
  margin-top: -0.5rem;
  margin-bottom: 0;
  font-size: 0.92rem;
  text-align: center;
}


/* Honeypot field styling - hide from humans but not from bots */
.honeypot-field {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  white-space: nowrap !important;
}

/* Alternative method - make it invisible but still accessible to screen readers */
.honeypot-container {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  z-index: -1;
}