#verifyType {
  margin-bottom: 24px;
}
#verifyType .input-title {
  margin-bottom: 12px;
}
@media (max-width: 623px) {
  #verifyType {
    margin-bottom: 0;
  }
}

.required {
  margin-left: 4px;
}

.input-group .radio-group {
  margin-bottom: 12px;
}

.qrCode-card {
  height: 285px;
  width: 225px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  text-align: center;
  background: #fff;
  border-radius: 12px;
  letter-spacing: 0;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
.qrCode-card .qrCode {
  position: relative;
  height: 180px;
  width: 180px;
  margin: 0 auto;
}
.qrCode img {
  width: 100%;
}

.qrCode-card #qrCodeRefresh {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -30px;
  margin-left: -30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff url("./../images/renew.svg") center no-repeat;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}


.qrCode-time #qrCodeTime {
  color: var(--ct-text-moderate-general);
  margin-left: 8px;
}

/* Login Options Row (Trust Browser + Forget Password) */
.login-options-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px; /* Breathing room after password/error */
  margin-bottom: 24px;
}

/* Checkbox styling within the options row */
.trust-browser-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.trust-browser-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  cursor: pointer;
  /* Ensure it looks interactive */
}

.trust-browser-checkbox label {
  cursor: pointer;
  user-select: none;
  line-height: 1.5;
}

/* Mobile Layout for Options Row */
@media (max-width: 623px) {
  .login-options-wrapper {
      flex-direction: column;
      align-items: stretch;
      gap: 12px;
      margin-bottom: 24px;
  }

  .login-options-wrapper .option-right {
      display: flex;
      justify-content: flex-end;
  }
}
