.auth-screen {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: center;
  gap: 56px;
  width: min(1040px, calc(100% - 48px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 48px 0;
}

.brand-copy {
  max-width: 520px;
}

.brand-copy p:not(.eyebrow) {
  color: var(--text-sub);
  line-height: 1.55;
}

.auth-panel {
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.segmented {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 18px;
  padding: 4px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface-soft);
}

.segmented button {
  min-height: 40px;
  border-radius: 6px;
  background: transparent;
  color: var(--text-sub);
  font-weight: 750;
  border: 0;
}

.segmented button.active {
  background: var(--surface);
  color: var(--blue);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}

@media (max-width: 860px) {
  .auth-screen {
    grid-template-columns: 1fr;
    width: min(430px, calc(100% - 32px));
    align-content: center;
    gap: 24px;
  }
}
