/* Almak OS — стили экрана входа (отдельно от основного приложения) */
.almak-gate{
  position:fixed; inset:0; z-index:9999;
  display:flex; align-items:center; justify-content:center;
  padding:24px;
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(20,84,69,.35), transparent 60%),
    linear-gradient(160deg,#0B2C25 0%,#0E3B31 55%,#08201B 100%);
  font-family:"Inter",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  color:#eef4f1;
}
.almak-login{
  width:100%; max-width:380px;
  background:#ffffff; color:#111614;
  border-radius:18px;
  padding:32px 30px 26px;
  box-shadow:0 24px 70px rgba(4,20,16,.45);
  display:flex; flex-direction:column; gap:14px;
}
.almak-brand{display:flex; align-items:center; gap:11px; margin-bottom:4px}
.almak-mark{
  width:40px; height:40px; border-radius:11px;
  background:linear-gradient(135deg,#145445,#0B2C25);
  color:#F6EDDF; display:flex; align-items:center; justify-content:center;
  font-weight:700; font-size:20px; letter-spacing:.5px;
}
.almak-brand-t b{display:block; font-size:15px; line-height:1.1}
.almak-brand-t span{display:block; font-size:12px; color:#6E7873}
.almak-login h1{font-size:20px; font-weight:700; margin:6px 0 0}
.almak-sub{font-size:13px; color:#6E7873; margin:0 0 4px; line-height:1.45}
.almak-login label{
  display:flex; flex-direction:column; gap:6px;
  font-size:12px; font-weight:600; color:#3B443F;
}
.almak-login input{
  border:1px solid #E4E8E5; border-radius:10px;
  padding:11px 13px; font-size:14px; color:#111614;
  background:#FAFBFA; outline:none; transition:.15s;
}
.almak-login input:focus{border-color:#145445; background:#fff; box-shadow:0 0 0 3px rgba(20,84,69,.12)}
.almak-err{
  color:#B3413A; font-size:12.5px; min-height:16px; line-height:1.4;
}
.almak-btn{
  margin-top:4px; border:none; border-radius:11px; cursor:pointer;
  background:linear-gradient(135deg,#145445,#0E3B31); color:#F1F6F4;
  padding:12px 16px; font-size:14.5px; font-weight:600;
  transition:.15s; font-family:inherit;
}
.almak-btn:hover{filter:brightness(1.08)}
.almak-btn:disabled{opacity:.65; cursor:default}
.almak-foot{font-size:11.5px; color:#9AA39E; text-align:center; margin:6px 0 0; line-height:1.4}
