body.login-page {
  min-height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow: hidden;
  background: #050505;
  font-family: 'Poppins', sans-serif;
  color: #fff;
}
body.login-page .login-scene {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  filter: blur(5px) brightness(0.58) saturate(0.75);
  transform: scale(1.06);
  transform-origin: center center;
  transition: filter 0.95s ease, transform 0.95s ease;
}
body.login-page .login-scene .stage a {
  pointer-events: none;
}
body.login-page .login-scene .stage a .inner .more {
  display: none;
}
body.login-page .login-veil {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(6, 12, 20, 0.46);
  transition: opacity 0.95s ease;
}
body.login-page.is-entering .login-scene {
  filter: blur(0) brightness(1) saturate(1);
  transform: scale(1);
}
body.login-page.is-entering .login-veil,
body.login-page.is-entering .login-card {
  opacity: 0;
}
body.login-page.is-entering .login-card {
  transform: translateY(10px) scale(0.98);
  pointer-events: none;
}
.login-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 420px;
  padding: 36px 32px 32px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(12, 18, 28, 0.58);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.login-card h1 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.login-card p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.5;
}
.login-field {
  margin-bottom: 14px;
}
.login-field label {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  letter-spacing: 0.04em;
}
.login-field input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 15px;
  outline: none;
}
.login-field input:focus {
  border-color: #4d7ea8;
  box-shadow: 0 0 0 3px rgba(77, 126, 168, 0.25);
}
.login-error {
  display: none;
  margin: 0 0 14px;
  color: #ffb4b4;
  font-size: 13px;
}
.login-error.is-visible {
  display: block;
}
.login-submit {
  width: 100%;
  padding: 12px 16px;
  border: 0;
  border-radius: 999px;
  background: #1c3d5a;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.login-submit:hover,
.login-submit:focus {
  background: #152e44;
}
.login-submit:disabled {
  opacity: 0.65;
  cursor: wait;
}
