/* =========================================================
   LOCK (CSS)
   Arquivo: /public/modules/lock.css
========================================================= */

#lockScreen{
  position:fixed;
  inset:0;
  z-index:99999;
  display:none;
  align-items:center;
  justify-content:center;
  background:#0e0f10;
  padding:22px;
}

.lockBox{
  width:min(420px, 92vw);
  border-radius:18px;
  padding:18px;
  background:#16181a;
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 18px 40px rgba(0,0,0,.35);
  color:#fff;
  text-align:center;
}

.lockLogo{
  width:92px;
  height:92px;
  border-radius:18px;
  object-fit:contain;
  margin: 6px auto 12px;
  display:block;
}

.lockTitle{
  font-weight:900;
  font-size:18px;
  margin: 0 0 6px;
}

.lockSub{
  margin:0 0 14px;
  color: rgba(255,255,255,.82);
  font-size:14px;
  line-height:1.3;
}

.lockRow{
  display:flex;
  gap:10px;
  margin-top:10px;
}

.lockInput{
  flex:1;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background:#0f1112;
  color:#fff;
  outline:none;
  font-size:16px;
  text-align:center;
  letter-spacing: 3px;
}

.lockBtn{
  padding:12px 14px;
  border-radius:12px;
  border:0;
  background:#00e454;
  color:#07110a;
  font-weight:900;
  cursor:pointer;
  white-space:nowrap;
}

.lockBtn:active{ transform:scale(.99); }

.lockErr{
  margin-top:10px;
  display:none;
  color:#ff6b6b;
  font-weight:800;
  font-size:13px;
}

.lockHint{
  margin-top:10px;
  color: rgba(255,255,255,.50);
  font-size:12px;
}
