/* Small, targeted fixes that keep existing layouts intact while improving semantics. */

button.hamburger,
button.close-btn,
button.resend-link,
button.go-login-control {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  background: transparent;
  font: inherit;
}

button.hamburger {
  color: inherit;
}

button.close-btn {
  padding: 0;
}

button.resend-link,
button.go-login-control {
  cursor: pointer;
}

button.resend-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  margin-left: 5px;
  transition: opacity 0.3s;
}

button.resend-link.cooldown {
  opacity: 0.5;
  pointer-events: none;
}

.go-login button.go-login-control {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

button.resend-link:focus-visible,
button.go-login-control:focus-visible,
button.close-btn:focus-visible,
button.hamburger:focus-visible,
.swiper-button-next:focus-visible,
.swiper-button-prev:focus-visible {
  outline: 3px solid rgba(0, 191, 255, 0.35);
  outline-offset: 3px;
  border-radius: 6px;
}

.swiper-button-next,
.swiper-button-prev {
  cursor: pointer;
}

.swiper-button-next[role="button"],
.swiper-button-prev[role="button"] {
  user-select: none;
}
