.access-login {
  align-items: center;
  display: flex;
  gap: 8px;
  min-width: fit-content;
}

.access-login__button {
  appearance: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 9px;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  min-height: 34px;
  padding: 0 12px;
  white-space: nowrap;
}

.access-login__button:hover,
.access-login__button:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  outline: 2px solid rgba(255, 255, 255, 0.75);
  outline-offset: 2px;
}

.access-login__account {
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 700;
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .access-login__account { display: none; }
  .access-login__button { min-height: 32px; padding: 0 9px; }
}
