@charset "UTF-8";
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* // 본문 */
.signup_form {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 5rem;
}
.signup_form .title {
  margin-bottom: 0;
}
.signup_form .data_container {
  position: relative;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 6rem;
}
.signup_form .data_container .data_box {
  width: 100%;
  margin-bottom: 1.5rem;
}
.signup_form .data_container .data_box .data_wrapper {
  position: relative;
  height: 6rem;
  width: 100%;
  margin-top: 2rem;
  background: #f2efe2;
  border: 1px solid #ccc;
  display: flex;
}
.signup_form .data_container .data_box .data_wrapper.readonly {
  box-sizing: border-box;
  background: #f2efe2;
  border: none;
}
.signup_form .data_container .data_box .data_wrapper.readonly .textinput {
  color: #868478;
}
.signup_form .data_container .data_box .data_wrapper .description {
  position: absolute;
  top: 0.9rem;
  left: 0.1rem;
  font-size: 1.2rem;
  color: #949494;
  text-indent: 2.5rem;
}
.signup_form .data_container .data_box .data_wrapper .textinput {
  margin-top: 2.4rem;
  height: 3rem;
  width: 100%;
  font-size: 1.5rem;
  background: transparent;
  border: none;
  outline: none;
  text-indent: 2.5rem;
}
.signup_form .data_container .data_box .data_wrapper .textinput::-moz-placeholder {
  color: #aaa;
}
.signup_form .data_container .data_box .data_wrapper .textinput::placeholder {
  color: #aaa;
}
.signup_form .data_container .data_box .data_wrapper .btn {
  position: absolute;
  width: 10rem;
  height: 3rem;
  line-height: 3rem;
  top: 1.5rem;
  right: 1.5rem;
  text-align: center;
  font-size: 1.3rem;
  border: 1px solid #ccc;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.signup_form .data_container .data_box .data_wrapper .btn:hover {
  border: 1px solid #999;
}
.signup_form .data_container .data_box .data_wrapper.auth_check_box {
  display: none;
}
.signup_form .data_container .agree_all {
  width: 100%;
}
.signup_form .data_container .agree_all .agree_all_title_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 4rem;
  float: left;
}
.signup_form .data_container .agree_all .agree_all_title_wrapper .agree_all_title {
  font-size: 1.5rem;
  font-weight: 500;
  color: #333;
}
.signup_form .data_container .agree_all .agree_all_title_wrapper input[type=checkbox] {
  min-width: 1.8rem;
  min-height: 1.8rem;
  margin-right: 1rem;
  accent-color: #898572;
  cursor: pointer;
}
.signup_form .data_container .agree {
  width: 100%;
}
.signup_form .data_container .agree .agree_title_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 4rem;
  float: left;
}
.signup_form .data_container .agree .agree_title_wrapper .agree_title {
  font-size: 1.4rem;
  color: #333;
}
.signup_form .data_container .agree .agree_title_wrapper .agree_title span {
  font-size: 1.1rem;
  cursor: pointer;
}
.signup_form .data_container .agree .agree_title_wrapper input[type=checkbox] {
  width: 1.8rem;
  height: 1.8rem;
  margin-right: 1rem;
  accent-color: #898572;
  cursor: pointer;
}
.signup_form .data_container .agree .agree_textarea {
  display: none;
  width: calc(100% - 4rem);
  height: 7rem;
  padding: 2rem;
  padding-top: 1.5rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
  outline: none;
  resize: none;
  border: 1px solid #eeeeee;
  background: #f2efe2;
  color: #232323;
  font-size: 1.2rem;
  font-family: "Noto Sans KR", sans-serif;
}
.signup_form .data_container .join_btn {
  box-sizing: border-box;
  height: 4rem;
  width: 100%;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #646464;
  border: 1px solid #151515;
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

@media all and (max-width: 1079px) {
  .signup_form {
    margin-top: 5rem;
    margin-bottom: 5rem;
    width: 90%;
  }
  .signup_form .data_container .btn {
    max-width: none;
  }
  .signup_form .data_container .data_box .data_wrapper {
    height: 5rem;
  }
  .signup_form .data_container .data_box .data_wrapper .description {
    top: 0.6rem;
    text-indent: 1.8rem;
    font-size: 1.2rem;
  }
  .signup_form .data_container .data_box .data_wrapper .textinput {
    margin-top: 2rem;
    text-indent: 1.6rem;
    font-size: 1.4rem;
  }
  .signup_form .data_container .data_box .data_wrapper .btn {
    top: 0.9rem;
    right: 0.65rem;
    width: 9rem;
    font-size: 1.2rem;
  }
  .signup_form .data_container .agree .agree_title_wrapper .agree_title {
    font-size: 1.3rem;
  }
}/*# sourceMappingURL=join.css.map */