body.login-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(11,39,66,.94), rgba(18,59,102,.84)),
    linear-gradient(45deg, #0B2742, #123B66);
}
.login-card {
  width: min(960px, calc(100% - 24px));
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(340px, 1fr);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0,0,0,.26);
  overflow: hidden;
}
.login-brand { padding: 44px; background: #0B2742; color: #fff; display: flex; flex-direction: column; justify-content: space-between; }
.login-logo { width: 64px; height: 64px; display: grid; place-items: center; border-radius: 8px; background: #EAF1F7; color: #123B66; margin-bottom: 24px; }
.login-form { padding: 44px; }
.version { color: rgba(255,255,255,.65); font-size: 13px; }
@media (max-width: 820px) {
  .login-card { grid-template-columns: 1fr; }
  .login-brand { padding: 26px; }
  .login-form { padding: 26px; }
}
