.authenticator-setup {
  display: grid;
  grid-template-columns: minmax(190px, 230px) 1fr;
  gap: 30px;
  align-items: start;
  margin: 24px 0;
}

.totp-qr {
  display: grid;
  place-items: center;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
}

.totp-qr svg {
  display: block;
  width: 100%;
  height: auto;
}

.qr-help {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.manual-key-heading {
  margin: 0 0 5px;
  font-weight: 800;
}

@media (max-width: 760px) {
  .authenticator-setup {
    grid-template-columns: 1fr;
  }

  .totp-qr {
    width: min(230px, 100%);
  }
}
