
.inline-auth {
  background: var(--surface, #111);
  border: 1px solid var(--border, #222);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text, #F5F5F0);
}
.auth-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border, #222);
}
.auth-tab {
  flex: 1;
  background: none;
  border: none;
  padding: 0.75rem;
  color: var(--muted, #888);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}
.auth-tab.active {
  color: var(--accent, #C9A96E);
  border-bottom-color: var(--accent, #C9A96E);
}
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.auth-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.auth-field label {
  font-size: 0.85rem;
  color: var(--muted, #888);
  font-family: 'Space Mono', monospace;
}
.auth-field input[type="email"],
.auth-field input[type="password"],
.auth-field input[type="text"] {
  background: var(--bg, #0A0A0A);
  border: 1px solid var(--border, #222);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--text, #F5F5F0);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  width: 100%;
}
.auth-field input:focus {
  outline: none;
  border-color: var(--accent, #C9A96E);
}
.auth-submit {
  background: var(--accent, #C9A96E);
  color: #000;
  border: none;
  border-radius: 8px;
  padding: 0.85rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-top: 0.5rem;
}
.auth-submit:hover { opacity: 0.85; }
.auth-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.auth-alert {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.auth-alert-error { background: rgba(220,38,38,0.15); color: #f87171; }
.auth-alert-success { background: rgba(34,197,94,0.15); color: #4ade80; }

/* Inline auth extracted styles */
.inline-auth-title { font-family: 'Instrument Serif', serif; margin-bottom: 1rem; }
.auth-field-inline-row {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.5rem;
}
.auth-checkbox-inline {
    width: auto;
    margin: 0.2rem 0 0 0;
}
.auth-label-inline {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.4;
}
.auth-link-accent { color: var(--accent); }
