.auth-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(15, 16, 18, 0.06);
}

.auth-bar__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #0f1012;
  font-size: 0.9rem;
}

.auth-bar__label {
  text-transform: uppercase;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: #a37f1e;
}

.auth-bar__name {
  font-weight: 600;
}

.auth-bar__email {
  font-size: 0.8rem;
  color: #6b7280;
}

.auth-bar__btn {
  background: #0f1012;
  color: #ffffff;
  border: none;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.auth-bar__btn--ghost {
  background: #ffffff;
  color: #0f1012;
  border: 1px solid #e5e7eb;
}

.auth-bar__btn:hover {
  opacity: 0.9;
}
