/* ═══════════════════════════════════════════
   GUVNA — Auth Screens (Phase 1)
   Append this to the bottom of style.css
═══════════════════════════════════════════ */

/* ── AUTH SCREEN WRAPPER ─────────────────── */
.auth-screen {
  background: #111111;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 40px 20px 60px;
  overflow-y: auto;
}

/* ── AUTH LOGO ───────────────────────────── */
.auth-logo {
  text-align: center;
  margin-bottom: 32px;
}
.auth-logo .role-logo-mark {
  width: 72px;
  height: 72px;
  background: var(--green);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: 900;
  color: #111;
  margin: 0 auto 12px;
}
.auth-logo .role-logo-text {
  font-size: 32px;
  font-weight: 900;
  color: white;
  letter-spacing: 4px;
}
.auth-logo .role-logo-sub {
  font-size: 12px;
  color: #555;
  margin-top: 6px;
  letter-spacing: 0.5px;
}

/* ── AUTH CARD ───────────────────────────── */
.auth-card {
  width: 100%;
  max-width: 400px;
  background: #1A1A1A;
  border-radius: 14px;
  padding: 28px 24px 24px;
  border: 1px solid #2A2A2A;
}

.auth-card-title {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  text-align: center;
}

/* ── AUTH ERROR BANNER ───────────────────── */
.auth-error {
  background: rgba(229, 57, 53, 0.15);
  border: 1px solid rgba(229, 57, 53, 0.4);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  color: #ff6b6b;
  margin-bottom: 16px;
  line-height: 1.4;
}

/* ── AUTH INPUTS — override light theme ─── */
.auth-card .field-label {
  color: #888;
}
.auth-card .field-input {
  background: #111;
  border: 1px solid #2A2A2A;
  color: white;
  border-radius: 8px;
}
.auth-card .field-input::placeholder {
  color: #444;
}
.auth-card .field-input:focus {
  outline: none;
  border-color: var(--green);
}

/* ── AUTH SUBMIT BUTTON ──────────────────── */
.auth-btn {
  width: 100%;
  background: var(--green);
  color: #111;
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 8px;
  transition: opacity 0.15s;
  letter-spacing: 0.3px;
}
.auth-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.auth-btn:active:not(:disabled) {
  opacity: 0.85;
}

/* ── AUTH SWITCH LINK ────────────────────── */
.auth-switch {
  text-align: center;
  font-size: 13px;
  color: #666;
  margin-top: 18px;
}
.auth-link {
  color: var(--green);
  cursor: pointer;
  font-weight: 600;
}
.auth-link:hover {
  text-decoration: underline;
}

/* ── TEAM MANAGEMENT ─────────────────────── */
.team-list { display: flex; flex-direction: column; gap: 10px; }
.team-member-card {
  background: #1A1A1A;
  border: 1px solid #2A2A2A;
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.team-member-avatar {
  width: 40px; height: 40px;
  background: var(--green);
  color: #111;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700;
  flex-shrink: 0;
}
.team-member-body { flex: 1; min-width: 0; }
.team-member-name { font-size: 14px; font-weight: 600; color: white; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.team-member-email { font-size: 12px; color: #666; margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ── ACCOUNTS ROLE BADGE ─────────────────── */
.topbar-role.accounts {
  color: #f0c040;
  background: #2A2010;
  border-color: #f0c040;
}
