/* Tito — auth screen (split-pane sign in) */

.auth-screen {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  background: var(--bg);
}

.auth-side {
  background: var(--ink);
  color: var(--bg);
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.auth-side::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  opacity: 0.12;
  pointer-events: none;
}

.auth-brand {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 12px;
}

.auth-brand-dot {
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}

.auth-pitch {
  max-width: 480px;
}

.auth-pitch-tag {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 24px;
}

.auth-pitch h1 {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.auth-pitch h1 em {
  font-style: italic;
  color: var(--accent-soft);
}

.auth-pitch p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(245,241,234,0.7);
  max-width: 420px;
}

.auth-features {
  display: grid;
  gap: 16px;
  margin-top: 40px;
}

.auth-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(245,241,234,0.85);
}

.auth-feature i {
  color: var(--accent);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.auth-foot {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(245,241,234,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.auth-form-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}

.auth-form {
  width: 100%;
  max-width: 380px;
}

.auth-form h2 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.auth-form .sub {
  color: var(--muted);
  margin-bottom: 32px;
}

.auth-alt {
  text-align: center;
  margin-top: 24px;
  font-size: 13px;
  color: var(--muted);
}

.auth-alt a {
  color: var(--accent);
  font-weight: 500;
}

/* ---- Inline error / info messages on auth forms ---- */
.auth-error,
.auth-info {
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 16px;
}

.auth-error {
  background: var(--red-soft);
  color: var(--red);
  border-left: 3px solid var(--red);
}

.auth-info {
  background: var(--green-soft);
  color: var(--green);
  border-left: 3px solid var(--green);
}
