/* splash-verify-gate.css — minimal styling for the OTP modal. */

.splash-verify-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 22, 35, 0.65);
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.splash-verify-overlay.is-open {
  display: flex;
}

.splash-verify-card {
  background: #fff;
  border-radius: 12px;
  max-width: 420px;
  width: 100%;
  padding: 28px 24px 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  position: relative;
  color: #0d1b2a;
}

.splash-verify-close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: #5b6b7a;
  padding: 4px 10px;
}

.splash-verify-close:hover {
  color: #0d1b2a;
}

.splash-verify-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.splash-verify-card p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.45;
  color: #3a4a5b;
}

.splash-verify-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #0d1b2a;
}

.splash-verify-label input {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 10px 12px;
  font-size: 16px;
  border: 1px solid #c4cdd6;
  border-radius: 6px;
  box-sizing: border-box;
  font-family: inherit;
}

.splash-verify-label input:focus {
  outline: none;
  border-color: #0090e0;
  box-shadow: 0 0 0 3px rgba(0, 144, 224, 0.18);
}

.splash-verify-btn {
  display: block;
  width: 100%;
  background: #0090e0;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 4px;
  transition: background 120ms ease;
  font-family: inherit;
}

.splash-verify-btn:hover:not(:disabled) {
  background: #0077bd;
}

.splash-verify-btn:disabled {
  opacity: 0.6;
  cursor: wait;
}

.splash-verify-error {
  color: #b3261e;
  background: #fdecec;
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 13px;
  margin: 12px 0 0;
}

.splash-verify-resend {
  font-size: 13px;
  color: #0090e0;
  text-decoration: none;
}

.splash-verify-resend:hover {
  text-decoration: underline;
}
