/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 100px;
  overflow: hidden;
  height: 28px;
  padding: 2px;
  gap: 2px;
  flex-shrink: 0;
}

.lang-switcher-btn {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 11px;
  color: #777;
  background: transparent;
  border: none;
  padding: 2px 10px;
  cursor: pointer;
  height: 22px;
  border-radius: 100px;
  transition: background-color 0.2s ease, color 0.2s ease;
  line-height: 1;
}

.lang-switcher-btn.active {
  background-color: #5336d1;
  color: #fff;
}

.lang-switcher-btn:hover:not(.active) {
  background-color: rgba(83, 54, 209, 0.1);
}

/* Auth pages (purple bg) — white border */
.screen .lang-switcher {
  border-color: rgba(255, 255, 255, 0.4);
}

.screen .lang-switcher-btn {
  color: rgba(255, 255, 255, 0.6);
}

.screen .lang-switcher-btn.active {
  background-color: #04D9B2;
  color: #060606;
}

.screen .lang-switcher-btn:hover:not(.active) {
  background-color: rgba(255, 255, 255, 0.15);
}
