.login-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 40px 24px;
  text-align: center;
}

.login-card {
  max-width: 420px;
  width: 100%;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
}

.login-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.login-desc {
  font-size: 15px;
  color: var(--color-text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
}

.login-footer {
  margin-top: 32px;
}

.login-divider {
  border: none;
  height: 1px;
  background: var(--color-border-light);
  margin: 0 0 16px;
}

.login-brand {
  font-size: 13px;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
}

.login-desc.is-emphasized {
  animation: loginDescFadeUp 0.6s var(--ease-out) both;
}

@keyframes loginDescFadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
