.login-body {
  background: var(--bg-base);
  display: flex; align-items: center; justify-content: center;
  min-height: 100vh;
}

.login-wrapper {
  width: 100%; max-width: 380px;
  padding: 20px;
}

.login-box {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-lg);
  animation: modalIn .25s cubic-bezier(.34,1.56,.64,1);
}

.login-logo {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.login-logo-icon {
  width: 42px; height: 42px;
  background: var(--accent);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800;
  color: var(--bg-base);
  box-shadow: 0 0 20px var(--accent-glow);
  flex-shrink: 0;
}

.login-logo-main {
  display: block;
  font-size: 15px; font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -.02em;
}

.login-logo-sub {
  display: block;
  font-size: 11px; color: var(--text-muted);
  margin-top: 1px;
}

.login-form { display: flex; flex-direction: column; gap: 14px; }

.btn-login {
  width: 100%;
  justify-content: center;
  padding: 9px;
  font-size: 13px; font-weight: 600;
  margin-top: 4px;
}

.login-hint {
  margin-top: 16px; padding-top: 14px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  gap: 8px; font-size: 11px; color: var(--text-muted);
  font-family: var(--font-mono);
}

.hint-sep { color: var(--border); }
