body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: rgb(var(--v-theme-background));
  color: rgb(var(--v-theme-secondary));
  min-height: 100vh;
}

.login-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 32px 80px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 25%, rgba(59, 130, 246, 0.08), transparent 40%),
    radial-gradient(circle at 85% 10%, rgba(74, 222, 128, 0.06), transparent 35%),
    radial-gradient(circle at 50% 90%, rgba(139, 92, 246, 0.04), transparent 40%),
    linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}

.login-shell {
  position: relative;
  width: 100%;
  max-width: 1280px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.login-left {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  width: 100%;
}

.login-logo-text {
  width: 100%;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.logo-title {
  font-size: clamp(1.9rem, 2.3vw, 2.4rem);
  font-weight: 800;
  color: rgb(var(--v-theme-secondary));
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.logo-sub {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1f2937;
  letter-spacing: 0.06em;
}

.login-right {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.headline {
  font-size: clamp(1.15rem, 1.5vw, 1.35rem);
  font-weight: 600;
  margin: 0 0 4px;
  color: rgb(var(--v-theme-secondary));
  line-height: 1.45;
  letter-spacing: -0.02em;
  white-space: pre-line;
}

.subhead {
  margin: 0 0 16px;
  color: #475569;
  font-weight: 600;
  line-height: 1.5;
}

.cta-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}

.cta-stack > * {
  width: 100%;
}

.pill-btn {
  border-radius: 999px;
  height: 46px;
  text-transform: none;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.18);
  align-self: stretch;
  justify-content: center;
  transition: box-shadow 0.2s ease, transform 0.15s ease;
}

.pill-btn:hover {
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.28);
  transform: translateY(-1px);
}

.pill-btn.outline {
  box-shadow: none;
}

.divider {
  display: flex;
  align-items: center;
  color: rgba(15, 23, 42, 0.35);
  gap: 14px;
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(15, 23, 42, 0.08);
}

.footer {
  margin-top: 6px;
  color: #475569;
  font-weight: 600;
  font-size: 0.95rem;
}

.link {
  color: #0f172a;
  text-decoration: none;
  font-weight: 700;
}

@media (max-width: 1200px) {
  .login-shell {
    gap: 64px;
  }
}

@media (max-width: 1024px) {
  .login-shell {
    gap: 48px;
  }
}

@media (max-width: 900px) {
  .login-shell {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .login-left {
    order: 2;
  }
  .login-right {
    order: 1;
    max-width: 100%;
  }
}
