/* Auth Page */
:root {
  --accent: #00a884;
  --bg: #111b21;
  --card-bg: #202c33;
  --border: #2a3942;
  --text: #e9edef;
  --muted: #8696a0;
}
* { box-sizing: border-box; }
body.auth-body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  font-family: 'Segoe UI', Arial, sans-serif;
  padding: 20px;
}
.auth-container { width: 100%; max-width: 420px; }
.auth-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.auth-logo { text-align: center; margin-bottom: 24px; }
.logo-icon {
  width: 72px; height: 72px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #fff;
  margin-bottom: 12px;
}
.auth-logo h2 { color: var(--text); font-weight: 700; }
.auth-logo p { color: var(--muted); font-size: 14px; }

.nav-pills .nav-link { color: var(--muted); border-radius: 8px; }
.nav-pills .nav-link.active { background: var(--accent); color: #fff; }

.form-control, .form-select {
  background: #2a3942;
  border: 1px solid transparent;
  color: var(--text);
  border-radius: 8px;
}
.form-control:focus, .form-select:focus {
  background: #2a3942;
  border-color: var(--accent);
  color: var(--text);
  box-shadow: 0 0 0 3px rgba(0,168,132,.2);
}
.form-control::placeholder { color: var(--muted); }
.input-group-text { background: #2a3942; border-color: transparent; color: var(--muted); }
.form-label { color: var(--muted); font-size: 13px; margin-bottom: 4px; }

.btn-success { background: var(--accent); border-color: var(--accent); }
.btn-success:hover { background: #008f72; border-color: #008f72; }
.btn-outline-secondary { border-color: #3d4d56; color: var(--muted); }
.btn-outline-secondary:hover { background: #3d4d56; color: var(--text); }
