#myTab {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}
#myTab li button {
  padding: 16px;
  font-size: 20px;
  color: #002a00;
  background: #eeeeee;
  font-weight: 500;
  border: none;
}
#myTab li .active {
  color: #fff;
  background: #007805;
}

.top_left {
  padding-top: 20px !important;
}
.top_left .note {
  font-size: 30px;
  font-weight: 700;
  margin: 8px 0 0px;
}

form .box_form {
  margin-bottom: 30px;
}
form .box_form .title_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 20px;
}
form .box_form .title_box .left_title {
  display: flex;
  align-items: center;
  grid-gap: 5px;
}
form .box_form .title_box .left_title span {
  display: inline-block;
  font-size: 20px;
  line-height: 25px;
  font-weight: bold;
  text-transform: uppercase;
}
form .box_form .title_parent {
  font-size: 18px;
  font-weight: 600;
  color: #222222;
  margin-bottom: 20px;
}
form .box_form .mom {
  margin-top: 30px;
}
form .box_form .body_form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}
form .box_form .body_form .sex-box .check-box,
form .box_form .body_form .club-box .check-box {
  display: flex;
  gap: 30px;
  align-items: center;
}
form .box_form .body_form .sex-box .check-box .form-check,
form .box_form .body_form .club-box .check-box .form-check {
  display: flex;
  align-items: center;
  gap: 8px;
}
form .box_form .body_form .sex-box .check-box .form-check input,
form .box_form .body_form .club-box .check-box .form-check input {
  width: 20px;
  height: 20px;
  margin-bottom: 5px;
}
form .box_form .body_form .sex-box .check-box .form-check input:checked[type=radio]:after,
form .box_form .body_form .club-box .check-box .form-check input:checked[type=radio]:after {
  top: 1px;
  left: 2px;
  width: 6px;
  height: 10px;
}
form .box_form .body_form .form-item label {
  font-size: 16px;
  font-weight: 600;
  color: #222222;
  margin-bottom: 10px;
}
form .box_form .body_form .form-item input {
  height: 43px;
  padding: 12px 20px;
  font-size: 15px;
  color: #222222;
}
form .box_form .body_form .form-item input::-moz-placeholder {
  color: #777777;
}
form .box_form .body_form .form-item input::placeholder {
  color: #777777;
}
form .box_form .body_form .form-item textarea {
  padding: 12px 20px;
}
form .box_form .body_form .form-item select {
  height: 43px;
}
form .box_form .label-agree {
  margin-top: 20px;
  margin-bottom: 0;
  position: relative;
  padding-left: 30px;
  font-size: 16px;
  font-weight: normal;
  color: #222222;
  cursor: pointer;
}
form .box_form .label-agree input {
  position: absolute;
  cursor: pointer;
  height: 0;
  width: 0;
  opacity: 0;
}
form .box_form .label-agree .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background: #fff;
  border: solid 1px #FF4783;
  border-radius: 6px;
}
form .box_form .label-agree input:checked ~ .checkmark {
  background: #FF4783 url("../../../../images/checkbox.svg") top -1px left -1px no-repeat;
}
form .box_form .sub_label {
  font-size: 14px;
  margin-bottom: 5px;
  color: #222222;
}
form .function {
  display: flex;
  gap: 30px;
  align-items: center;
}
form .function .submit_form {
  display: inline-block;
  padding: 10px 30px;
  color: #fff;
  border-radius: 5px;
  background-color: #ec008c;
  font-weight: 600;
}
form .function .reset {
  background-color: #FF4783;
  color: #fff;
}
@media (max-width: 767px) {
  form .box_form {
    margin-bottom: 30px;
  }
  form .box_form .title_box {
    flex-direction: column;
    align-items: flex-start;
    grid-gap: 5px;
  }
  form .box_form .title_box .left_title span {
    font-size: 18px;
    line-height: 23px;
  }
  form .box_form .body_form {
    display: flex;
    flex-direction: column;
  }
  form .box_form .body_form .form-floating {
    grid-column: unset !important;
  }
}

.note {
  font-size: 16px;
  color: #222222;
  margin-bottom: 0;
  margin-top: 8px;
}

.note_register p {
  font-size: 16px;
  color: #222222;
  margin-bottom: 8px;
}
.note_register p:last-child {
  margin-bottom: 0;
}

.form-check input[type=radio] {
  border-radius: 5px;
  border-color: var(--color-main);
}
.form-check input:checked[type=radio] {
  background-image: unset;
  background-color: var(--color-main);
  position: relative;
}
.form-check input:checked[type=radio]:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 8px;
  border: 2px solid #fff;
  border-left: none;
  border-top: none;
  transform: translate(4px, 1px) rotate(45deg);
}

@media (max-width: 768px) {
  form .box_form .body_form .club-box .check-box {
    gap: 15px;
  }
}/*# sourceMappingURL=home.css.map */