.reVerifyContent .title{
  font-size: 15px;
  font-weight: bold;
  color: var(--foreground-1);
}
.reVerifyContent .title span{
  color: #ed3753;
  font-weight: normal;
}
.reVerifyContent .hint{
  font-size: 14px;
  color: var(--foreground-4);;
  margin-top: 6px;
}
.reVerifyContent .hint .b{
  font-weight: bold;
  color: var(--foreground-1);
}
.reVerifyContent .hint a{
  font-size: 14px;
  color: #1aa1a9;
  font-weight: bold;
}
.redio-wrap{
  padding: 9px 16px;
  border-radius: 6px;
  border: solid 2px #eaedf0;
  margin-top: 4px;
  margin-bottom: 6px;
  width: 75%;
}
.redio-wrap input[type="radio"]{
  display: none;
}
.redio-wrap input[type="radio"]:checked + label span{
  background-color: #00a8af;
}
.redio-wrap label span{
  display:inline-block;
  width:14px;
  height:14px;
  border-radius: 999rem;
  border: solid 1px #FFF;
  background-color: #FFF;
  box-shadow: 0px 0px 0px 2px #d4d8de;
  margin-right: 10px;
}
.redio-wrap label{
  margin-bottom: 0;
  color: var(--foreground-1);
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  margin-right: 30%;
  cursor: pointer;
}
.checkbox-wrap{
  padding: 4px 16px;
  border-radius: 6px;
  border: solid 2px #eaedf0;
  margin-top: 4px;
  margin-bottom: 6px;
  width: 75%;
}
.checkbox-wrap label{
  margin-bottom: 0;
  cursor: pointer;
}
.checkbox-item {
  min-width: 36px;
  min-height: 36px;
  max-width: 36px;
  max-height: 36px;
}
.checkbox-item label {
  margin-bottom: 0;
  position: relative;
  height: 36px;
  width: 36px;
  border-radius: 999rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.checkbox-item input {
  display: none;
}
.checkmark {
  height: 16px;
  width: 16px;
  border: #d4d8de 2px solid;
  border-radius: 3px;
}
.checkbox-item label input:checked~.checkmark {
  background-color: #00a8af;
  border: #00a8af 2px solid;
}
.checkbox-item label .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 15px;
  top: 12px;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.checkbox-item label input:checked~.checkmark:after {
  display: block;
}
.uploadimg{
  font-size: 15px;
  color: #9fa8aa;
  border-radius: 6px;
  border: solid 2px #eaedf0;
  background-color: #edf0f4;
  padding: 4px 4px 4px 15px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 75%;
}
.uploadimg .upload-btn{
  position: relative;
  border-radius: 6px;
  background-color: var(--background-1);
  color: var(--foreground-1);
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 6px 10px;
  white-space: nowrap;
}

.reVerifyContent input::-webkit-input-placeholder,
.reVerifyContent textarea::-webkit-input-placeholder {color: #9fa8aa}
.reVerifyContent input::-moz-placeholder,
.reVerifyContent textarea::-moz-placeholder {color: #9fa8aa}
.reVerifyContent input:-ms-input-placeholder,
.reVerifyContent textarea:-ms-input-placeholder{color: #9fa8aa}
.reVerifyContent input::-ms-input-placeholder,
.reVerifyContent textarea::-ms-input-placeholder{color: #9fa8aa}
.reVerifyContent input::placeholder,
.reVerifyContent textarea::placeholder {color: #9fa8aa}

.reVerifyContent input[type="text"],
.reVerifyContent input[type="email"],
.reVerifyContent input[type="number"],
.reVerifyContent input[type="tel"],
.reVerifyContent input[type="date"],
.reVerifyContent select,
.reVerifyContent textarea{
  -webkit-appearance: none;  /* Safari 和 Chrome，常用於iOS下移除內建樣式 */
  -moz-appearance: none;     /* FireFox */
  appearance: none;
  border-radius: 6px;
  border: solid 2px var(--stroke-2);
  background-color: var(--search-input-background);
  width: 75%;
  margin-top: 6px;
  padding: 9px 15px;
  font-size: 15px;
}

.reVerifyContent select, .reVerifyContent input[type="date"]{
  height: 40px;
  padding: 0 15px !important;
}

.reVerifyContent textarea{
  height: 140px;
}

.reVerifyContent input[type="text"]:focus,
.reVerifyContent input[type="email"]:focus,
.reVerifyContent input[type="number"]:focus,
.reVerifyContent input[type="tel"]:focus,
.reVerifyContent input[type="date"]:focus,
.reVerifyContent select:focus,
.reVerifyContent textarea:focus{
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

.input-error-text{
  color: #fc003c;
  font-size: 14px;
  line-height: 1.5;
  margin-top: 0;
}
.input-error-border input,
.input-error-border select,
.input-error-border textarea,
.input-error-border .g-recaptcha{
  border: solid 2px #e7b021!important;
}

.error-border.input-error-border{
  border: solid 2px #e7b021!important;
}

@media (max-width: 768px) {
  .checkbox-wrap,
  .redio-wrap,.uploadimg,
  .reVerifyContent input[type="text"],
  .reVerifyContent input[type="email"],
  .reVerifyContent input[type="number"],
  .reVerifyContent input[type="tel"],
  .reVerifyContent input[type="date"],
  .reVerifyContent select,
  .reVerifyContent textarea{
    width: 100%;
  }
}
