.form-box{
    width: 100%;
}
.cityu-emba .checkbox-item {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #fff;
  margin-right: 8px;
  transition: all 0.3s;
  position: relative;
  flex-shrink: 0;
}
.cityu-emba .checkbox-item::after {
  background: transparent;
  border-radius: 0;
  box-sizing: content-box;
  content: "";
  border: 2px solid #fff;
  border-left: 0;
  border-top: 0;
  position: absolute;
  transform: rotate(45deg) scaleY(0);
  transition: transform 0.15s ease-in 0.05s;
  transform-origin: center;
  height: 9px;
  left: 6px;
  top: 2px;
  width: 4px;
}
.cityu-emba .checkbox-item:checked {
  border: 1px solid #fff;
  background: linear-gradient(90deg, #762b2b 0%, #d15353 100%);
}
.cityu-emba .checkbox-item:checked::after {
  transform: rotate(45deg) scaleY(1);
}
label:has(> .checkbox-item) {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
}
label:not(:has(> .checkbox-item)) {
  display: none !important;
}