/* ── Tab active state: use app ink rather than UIKit's default blue ── */
.login-card .uk-tab > li > a {
  color: #6b7280;
  border-bottom: 2px solid transparent;
  padding-bottom: 8px;
}
.login-card .uk-tab > li.uk-active > a {
  color: #111;
  border-bottom-color: #111;
}
.login-card .uk-tab > * > a:focus,
.login-card .uk-tab > * > a:hover {
  color: #111;
}
.login-card .uk-tab {
  margin-bottom: 24px;
}

/* ── SSO provider buttons (Google, Microsoft) ── */
.btn-sso {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  color: #111;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.btn-sso:hover {
  border-color: #ec4899;
  background: #fdf2f8;
  color: #111;
  text-decoration: none;
}
.btn-sso:hover .btn-sso__arrow { transform: translateX(3px); }
.btn-sso__left { display: flex; align-items: center; gap: 10px; }
.btn-sso__arrow { transition: transform 0.2s ease; color: #6b7280; }

/* ── "or" divider between SSO and form ── */
.login-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  color: #6b7280;
  font-size: 12px;
  white-space: nowrap;
}
.login-divider::before,
.login-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e5e7eb;
}

/* ── Secondary auth links (forgot password, toggle between sign-in modes) ── */
.login-forgot {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  font-family: inherit;
  font-size: 13px;
  text-align: center;
  color: #6b7280;
  text-decoration: none;
  cursor: pointer;
}
.login-forgot:hover,
.login-forgot:focus-visible {
  color: #111;
  text-decoration: none;
  outline-offset: 2px;
}

/* ── Step indicator for multi-step signup ── */
.step-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 12px;
  color: #6b7280;
}
.step-indicator .step {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 600;
}
.step-indicator .step.done { background: #e8faf4; color: #2a9d6e; }
.step-indicator .step.active { background: #111; color: #fff; }
.step-indicator .step-sep { flex: 1; height: 1px; background: #e5e7eb; }

/* ── "Team already exists" notice ── */
.team-exists-card {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 16px;
  background: #fffbf0;
  margin-bottom: 16px;
}

/* ── Back navigation ── */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #6b7280;
  text-decoration: none;
  margin-bottom: 20px;
}
.back-link:hover { color: #111; text-decoration: none; }
