.site-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: #0a090b;
  box-sizing: border-box;
}

html.site-gate-unlocked .site-gate {
  display: none;
}

html:not(.site-gate-unlocked) #mobile-app {
  visibility: hidden;
  pointer-events: none;
}

.site-gate__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: min(320px, 100%);
  margin: 0;
}

.site-gate__label {
  margin: 0;
  color: #ffffff;
  font-family: Inter, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-align: center;
}

.site-gate__input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-family: Inter, system-ui, sans-serif;
  font-size: 14px;
  line-height: 20px;
  box-sizing: border-box;
}

.site-gate__input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.site-gate__input:focus-visible {
  outline: 2px solid #3d69cc;
  outline-offset: 2px;
}

.site-gate__submit {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  background: #3d69cc;
  color: #ffffff;
  font-family: Inter, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  cursor: pointer;
}

.site-gate__submit:hover {
  background: #345bb3;
}

.site-gate__submit:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.site-gate__error {
  margin: 0;
  color: #ff6b6b;
  font-family: Inter, system-ui, sans-serif;
  font-size: 13px;
  line-height: 18px;
  text-align: center;
}

.site-gate__error[hidden] {
  display: none;
}
