/*
================================================================================
WHAT:
  Waitlist-specific styles layered on top of shared login visuals.
WHY:
  Keep the login look while adapting interaction to email waitlist submission.
================================================================================
*/

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #050505;
}

* {
  box-sizing: border-box;
}

.waitlist-gate-container {
  padding-bottom: 0px;
}

.waitlist-intro {
  margin: -8px 0 0;
  color: rgba(240, 230, 210, 0.86);
  font-size: 13px;
  line-height: 1.7;
  letter-spacing: 0.5px;
  text-align: center;
}

.waitlist-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.waitlist-status {
  text-align: center;
  font-size: 12px;
  letter-spacing: 1px;
  border-radius: 4px;
  padding: 8px;
}

.waitlist-loading {
  color: #d4af37;
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: rgba(212, 175, 55, 0.1);
}

.waitlist-success {
  color: #9ad7ca;
  border: 1px solid rgba(74, 128, 117, 0.45);
  background: rgba(74, 128, 117, 0.14);
}

.enter-seal-container.is-disabled {
  opacity: 0.55;
  filter: grayscale(0.25);
  pointer-events: none;
}

.mouse-cloud-container {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 20;
  pointer-events: none;
  overflow: hidden;
}
