/* 輸入欄 */
.form-text {
  font-family: "Be Vietnam Pro", "Noto Sans TC", "Microsoft JhengHei", "Heiti TC", sans-serif;
  width: 100%;
  font-weight: normal;
  font-size: 1.125rem;
  background: var(--grey-f3);
  border: 1px solid var(--grey-f3);
  padding: 15px;
  box-shadow: none;
  transition: border .3s linear, color .3s linear, background-color .3s linear;
  box-sizing: border-box;
  border-radius: 3px;
  -webkit-appearance: none;
}
.form-text:focus {
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--grey-c);
  outline: 0;
}
.form-text::-moz-placeholder {
  font-size: 1.125rem;
  color: var(--black);
}
.form-text:-ms-input-placeholder {
  font-size: 1.125rem;
  color: var(--black);
}
.form-text::-webkit-input-placeholder {
  font-size: 1.125rem;
  color: var(--black);
}
.form-text[disabled], .form-text[readonly], fieldset[disabled] .form-text {
  background-color: var(--grey-c);
  border: 1px solid var(--grey-c);	
}
/* 圓點 */
.radio-custom {
  position: relative;
  padding: 0;
  margin-right: 15px;
  display: inline-block;
  vertical-align: middle;
}
.radio-custom:last-child, .radio-custom:last-of-type {
  margin-bottom: 0;
}
.radio-custom input[type="radio"] {
  opacity: 0;
  position: absolute;
  top: 0;
  left: -1px;
  z-index: 2;
  cursor: pointer;
}
.radio-custom input[type="radio"]:checked + label:after {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: var(--grey-9);
  border-radius: 50px;
}
.radio-custom input[type="radio"]:disabled {
  cursor: not-allowed;
}
.radio-custom input[type="radio"]:disabled:checked + label:after {
  color: var(--grey-9);
}
.radio-custom input[type="radio"]:disabled + label {
  cursor: not-allowed;
}
.radio-custom input[type="radio"]:disabled + label:before {
  background-color: var(--grey-f3);
}
.radio-custom label {
  cursor: pointer;
  text-align: left;
  font-size: 1.125rem;
  color: var(--grey-3);
  font-weight: normal;
  padding-left: 25px;
}
.radio-custom label:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  display: inline-block;
  border-radius: 50px;
  border: 1px solid var(--grey-9);
}
.radio-custom label + label.error {
  display: block;
}
/* 核取~方框 */
.checkbox-box {
  position: relative;
  padding: 0 0 0 25px;
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
}
.checkbox-box:last-child, .checkbox-box:last-of-type {
  margin-bottom: 0;
}
.checkbox-box input[type="checkbox"] {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  cursor: pointer;
}
.checkbox-box input[type="checkbox"]:checked + label:after {
  position: absolute;
  display: inline-block;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f00c";
  top: 3px;
  left: 3px;
  font-size: 0.875rem;
  color: #000;
}
.checkbox-box input[type="checkbox"]:disabled {
  cursor: not-allowed;
}
.checkbox-box input[type="checkbox"]:disabled:checked + label:after {
  color: var(--grey-9);
}
.checkbox-box input[type="checkbox"]:disabled + label {
  cursor: not-allowed;
}
.checkbox-box input[type="checkbox"]:disabled + label:before {
  background-color: var(--grey-f3);
}
.checkbox-box label {
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  color: var(--black);
  font-weight: normal;
}
.checkbox-box label:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  display: inline-block;
  border-radius: 3px;
  border: 1px solid var(--grey-9);
}
.checkbox-box label + label.error {
  display: block;
}
/* 核取~圓點 */
.checkbox-round {
  position: relative;
  padding: 0 0 0 25px;
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
}
.checkbox-round:last-child, .checkbox-round:last-of-type {
  margin-bottom: 0;
}
.checkbox-round input[type="checkbox"] {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  cursor: pointer;
}
.checkbox-round input[type="checkbox"]:checked + label:after {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: var(--grey-9);
  border-radius: 50px;
}
.checkbox-round input[type="checkbox"]:disabled {
  cursor: not-allowed;
}
.checkbox-round input[type="checkbox"]:disabled:checked + label:after {
  color: var(--grey-9);
}
.checkbox-round input[type="checkbox"]:disabled + label {
  cursor: not-allowed;
}
.checkbox-round input[type="checkbox"]:disabled + label:before {
  background-color: var(--grey-f3);
}
.checkbox-round label {
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  color: var(--black);
  font-weight: normal;
}
.checkbox-round label:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  display: inline-block;
  border-radius: 10px;
  border: 1px solid var(--grey-9);
  background-color: var(--grey-f3);
}
.checkbox-round label + label.error {
  display: block;
}
/* 確認 */
.form-submit {
  width: 100%;
  font-size: 1.25rem;
  background-color: var(--purple-1);
  color: var(--white);
  font-weight: normal;
  border: none;
  padding: 15px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: block;
  box-sizing: border-box;
  cursor: pointer;
  border-radius: 3px;
  -webkit-appearance: none;
}
.form-submit:hover {
  background-color: var(--purple-1);
  border-color: transparent;
}

@media screen and (max-width: 1199px) {
.form-text {
  font-family: sans-serif;
}	
}