/* Simple private-beta gate page styling */
.gate-body{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
}

.gate-card{
  width:100%;
  max-width:520px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.25);
  backdrop-filter: blur(10px);
}

.gate-brand{
  display:flex;
  gap:14px;
  align-items:center;
  margin-bottom:16px;
}

.gate-logo{
  width:44px;
  height:44px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
}

.gate-title{
  margin:0;
  font-size: 20px;
  line-height: 1.2;
}

.gate-subtitle{
  margin:4px 0 0;
  opacity:0.85;
}

.gate-form{
  margin-top:14px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.gate-label{
  font-size: 13px;
  opacity:0.9;
}

.gate-input{
  width:100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.18);
  color: inherit;
  outline: none;
}

.gate-input:focus{
  border-color: rgba(255,255,255,0.35);
}

.gate-button{
  width:100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 0;
  cursor:pointer;
  font-weight: 700;
}

.gate-error{
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,120,120,0.45);
  background: rgba(255,80,80,0.12);
}

.gate-footnote{
  margin: 14px 0 0;
  font-size: 12px;
  opacity: 0.75;
}

.gate-footnote code{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
