/* Auth pages theme and layout helpers */
:root {
  --bg: #ffffff;
  --text: #212529;
  --muted: #6c757d;
}

[data-theme="dark"] {
  --bg: #121212;
  --text: #e9ecef;
  --muted: #adb5bd;
}

body[data-theme] {
  background-color: var(--bg);
  color: var(--text);
}

.card { transition: background-color .2s ease, color .2s ease; }
body[data-theme="dark"] .card { background-color: #1e1e1e; color: var(--text); }

.form-text { color: var(--muted) !important; }

.input-group .btn { min-width: 42px; }