/* css/login.css — экран входа */
.login-screen {
  min-height: 100vh;
  background: linear-gradient(135deg, #18283E 0%, #1e3a5f 50%, #2B4675 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.login-bg-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(52,100,184,.25) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(58,159,150,.18) 0%, transparent 40%);
}
.login-card {
  background: #fff; border-radius: 18px; padding: 40px 36px;
  width: 380px; box-shadow: var(--shadow-lg); position: relative; z-index: 1;
}
.login-logo    { display: flex; align-items: center; gap: 14px; margin-bottom: 30px; }
.logo-emblem {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, #3464B8, #3A9F96);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.login-title    { font-size: 20px; font-weight: 700; }
.login-subtitle { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.login-note     { font-size: 11px; color: var(--text-light); text-align: center; margin-top: 14px; }
