.auth-gate{
  min-height:100dvh;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#0f1117;
  padding:20px;
}
.auth-box{
  max-width:360px;
  width:100%;
  text-align:center;
  padding:32px 28px;
  border:1px solid #2a2f3e;
  border-radius:12px;
  background:#171b26;
}
.auth-logo{
  width:64px;
  height:64px;
  object-fit:cover;
  border:2px solid #cffe61;
  border-radius:8px;
  margin-bottom:16px;
}
.auth-box h2{
  font-family:'Stack Sans Headline', sans-serif;
  font-weight:700;
  color:#e8e6e0;
  margin:0 0 8px;
}
.auth-message{
  color:#9ca3af;
  font-size:13px;
  margin-bottom:20px;
  white-space:pre-line;
}
.auth-form{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.auth-input-wrap{
  position:relative;
}
.auth-input-wrap input{
  width:100%;
  padding:12px 48px 12px 14px;
  border:1px solid #2a2f3e;
  border-radius:8px;
  background:#0f1117;
  color:#e8e6e0;
  font-family:'Stack Sans Headline', sans-serif;
  font-size:14px;
}
.auth-submit{
  position:absolute;
  top:50%;
  right:6px;
  transform:translateY(-50%);
  width:32px;
  height:32px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:none;
  border-radius:6px;
  background:#3959b0;
  color:#cffe61;
  cursor:pointer;
  transition:all .15s ease;
}
.auth-submit:hover{
  background:#cffe61;
  color:#3959b0;
}