/* Auth OTP sizing — match mockup/mfa.html + mfa-setup.html */
.content form .otp,
#mfaForm .otp,
#mfaSetupForm .otp {
  width: 36px;
  height: 44px;
  margin: 0 3px !important;
  padding: 0;
  font-size: 18px;
  line-height: 44px;
  vertical-align: middle;
}

.mfa-qr {
  width: 180px;
  height: 180px;
  padding: 12px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-sizing: content-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mfa-qr svg {
  width: 100%;
  height: 100%;
  max-width: 180px;
  max-height: 180px;
}

/*
 * Duo .btn-full is only `display:block`. That stretches <a.btn> (mock) to full
 * content width, but <button.btn> stays intrinsic-width. Force full width for both.
 */
.content > .btn.btn-full,
.content form .btn.btn-full,
.content a.btn.btn-full,
.content button.btn.btn-full {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
}
