h2 > span {
  display: block;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
}

h2 {
  font-size: 32px;
  padding-left: 10px;
  text-align: left;
}

.register-wrap .input-wrap {
  margin: 0 auto 40px;
  margin-bottom: 40px;
  max-width: 490px;
  position: relative;
  width: 95%;
}

.register-wrap label {
  color: #767676;
  display: block;
  font-size: 16px;
  margin-bottom: 16px;
}

.register-wrap label .essential {
  color: #b3261e;
}

.register-wrap .input {
  background-color: #fafafa;
  border: 0;
  font-size: 16px;
  height: 60px;
  padding: 0 20px;
}

.register-wrap .input-wrap .warning-word {
  color: #B3261E;
  margin-top: 10px;
}

.register-wrap .input-wrap .warning-red {
  height: 16px;
  margin-right: 6px;
  width: 16px;
}

.register-wrap .input-wrap .checkbox + span {
  align-items: center;
  border: 1px solid #767676;
  color: #1c1c1c;
  display: flex;
  font-size: 16px;
  height: 60px;
  justify-content: center;
}

.register-wrap .input-wrap .checkbox:checked + span {
  background-color: #767676;
  border: 0;
  color: #fff;
}

.register-wrap .select-gender-wrap {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
}

.register-wrap .input-phone-wrap {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
}

.register-wrap .input-phone-wrap .input {
  text-align: center;
}

.register-wrap .input-with-btn-wrap {
  display: grid;
  gap: 10px;
  grid-template-columns: auto 150px;
  position: relative;
}

.register-wrap .input-with-btn-wrap .btn-white {
  border: 1px solid #767676;
  color: #1c1c1c;
  font-size: 16px;
}


input[type="file"] {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.register-wrap .type-info {
  font-size: 16px;
  font-weight: 300;
  margin-top: 4px;
  padding-left: 10px;
}


.checkbox-wrap .input-wrap {
  align-items: center;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.checkbox-wrap .input-wrap label {
  margin-bottom: 0;
}

.checkbox-wrap .input-wrap .btn-white {
  border: 1px solid rgba(0, 0, 0, 0.12);
  font-size: 14px;
  height: 44px;
  text-align: center;
  width: 100px;
}

.checkbox-wrap .input-wrap .checkbox + label:before {
  height: 20px;
  margin-right: 0;
  width: 20px;
}

.register-wrap label > span:first-child {
  display: inline-block;
  vertical-align: middle;
}

.checkbox + label:before {
  margin-right: 16px;
  vertical-align: middle;
}

.btn-white {
  /*width : 156px;*/
  border: 1px solid #b1b1b1;
  border-radius: 2px;
  height: 36px;
}


.register-wrap textarea.input {
  min-height: 180px;
  padding: 20px;
}


@media screen and (max-width: 1016px) {

  .register-wrap .btn-wrap {
    margin: auto;
    width: 95%;
  }
}

@media screen and (max-width: 768px) {
  h2 {
    font-size: 24px;
    margin-bottom: 35px;
  }

  .btn-submit {
    font-size: 18px;
  }

}


@media screen and (max-width: 480px) {

  h2 > span {
    font-size: 14px;
    margin-bottom: 0;
  }

  h2 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .checkbox-wrap .input-wrap .btn-white {
    font-size: 14px;
  }

  .btn-submit {
    font-size: 16px;
  }

}