/* ==========================================================================
   THE CEO VAULT - Authentication Flow Styles
   ========================================================================== */

.auth-card-wrapper {
  max-width: 460px;
  margin: 0 auto;
}

.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-header h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg-tertiary);
  border-radius: var(--border-radius-md);
  padding: 4px;
  margin-bottom: 1.75rem;
  border: 1px solid var(--border-subtle);
}

.auth-tab-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.65rem;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.auth-tab-btn.active {
  background: var(--bg-secondary);
  color: var(--gold-light);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.auth-oauth-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.btn-oauth-discord {
  background: #5865F2;
  color: #ffffff;
  border: none;
}

.btn-oauth-discord:hover {
  background: #4752c4;
  color: #fff;
  transform: translateY(-2px);
}

.btn-oauth-xbox {
  background: #107C10;
  color: #ffffff;
  border: none;
}

.btn-oauth-xbox:hover {
  background: #0b5e0b;
  color: #fff;
  transform: translateY(-2px);
}

.btn-oauth-google {
  background: #ffffff;
  color: #1f2937;
  border: none;
}

.btn-oauth-google:hover {
  background: #f3f4f6;
  transform: translateY(-2px);
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  color: var(--text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-subtle);
}

.auth-footer {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.gamertag-verification-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--green-primary);
  margin-top: 0.25rem;
}
