/* Styles for the light password gate overlay. */
#np-gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: #0b0f0c;
  background: radial-gradient(circle at 50% 30%, #14201a 0%, #0b0f0c 70%);
  font-family: "Figtree", "Inter", system-ui, -apple-system, sans-serif;
}

#np-gate-overlay .np-gate-card {
  width: 100%;
  max-width: 360px;
  text-align: center;
  color: #e8f0ea;
}

#np-gate-overlay .np-gate-logo {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #7CFF9B;
  margin-bottom: 16px;
}

#np-gate-overlay .np-gate-msg {
  font-size: 15px;
  line-height: 1.5;
  color: #b9c6bd;
  margin: 0 0 24px;
}

#np-gate-overlay .np-gate-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#np-gate-overlay .np-gate-input {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid #2c3a30;
  background: #111713;
  color: #e8f0ea;
  outline: none;
  transition: border-color 0.15s ease;
}

#np-gate-overlay .np-gate-input:focus {
  border-color: #7CFF9B;
}

#np-gate-overlay .np-gate-btn {
  width: 100%;
  padding: 12px 14px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  background: #7CFF9B;
  color: #0b0f0c;
  cursor: pointer;
  transition: background 0.15s ease;
}

#np-gate-overlay .np-gate-btn:hover {
  background: #6bee8a;
}

#np-gate-overlay .np-gate-error {
  margin: 14px 0 0;
  font-size: 13px;
  color: #ff8080;
}
