/**
 * Minimal auth modal styles
 */
.auth-modal__hint {
  margin: 0 0 12px;
  color: var(--text-muted, #6b7280);
  font-size: 0.9rem;
}
.auth-modal__tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.auth-tab {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid var(--border, #e5e7eb);
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}
.auth-tab.is-active {
  background: var(--primary, #0056a4);
  color: #fff;
  border-color: transparent;
}
.auth-modal__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.auth-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted, #6b7280);
}
.auth-field input {
  padding: 10px 12px;
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text, #111);
}
.auth-modal__error {
  color: #dc2626;
  font-size: 0.85rem;
  margin: 0;
}
.auth-modal__submit {
  margin-top: 4px;
  width: 100%;
}
.auth-modal__link {
  background: none;
  border: none;
  color: var(--primary, #0056a4);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 0;
  text-align: center;
  text-decoration: underline;
}
.auth-modal__link:hover {
  opacity: 0.85;
}
.auth-modal__success {
  color: #059669;
  font-size: 0.85rem;
  margin: 0;
}
