.input_box {
  width: 100%;
  max-width: 40rem;
  display: flex;
  justify-content: center;
}
.input_box .input_wrapper {
  position: relative;
  width: 100%;
  height: 5rem;
  margin-bottom: 1.2rem;
  border: 1px solid #D9D9D9;
  border-radius: 0.5rem;
  background: white;
  cursor: text;
}
.input_box .input_wrapper .input_name.has_data {
  top: 0.7rem;
  font-size: 1.1rem;
}
.input_box .input_wrapper .input_remove_btn.has_data {
  opacity: 1;
}
.input_box .input_wrapper .input_name {
  position: absolute;
  top: 1.6rem;
  left: 1.4rem;
  color: #B9B9B9;
  font-size: 1.5rem;
}
.input_box .input_wrapper input {
  width: calc(100% - 4.5rem);
  height: 2.85rem;
  margin-left: 1.3rem;
  margin-top: 1.6rem;
  color: #333;
  border: none;
  outline: none;
  opacity: 0;
}
.input_box .input_wrapper input::-moz-placeholder {
  color: #999;
}
.input_box .input_wrapper input::placeholder {
  color: #999;
}
.input_box .input_wrapper input.has_data {
  opacity: 1;
}
.input_box .input_wrapper .password_view_btn {
  position: absolute;
  top: calc(50% - 1rem);
  right: 2.2rem;
  width: 1.4rem;
  height: 1.4rem;
  cursor: pointer;
}
.input_box .input_wrapper .input_remove_btn {
  position: absolute;
  top: calc(50% - 0.75rem);
  right: 1rem;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 100%;
  background-color: #D9D9D9;
  opacity: 0;
}
.input_box .input_wrapper .input_remove_btn .line_1 {
  transform: rotate(45deg);
}
.input_box .input_wrapper .input_remove_btn .line_2 {
  transform: rotate(-45deg);
}
.input_box .input_wrapper .input_remove_btn .line_1, .input_box .input_wrapper .input_remove_btn .line_2 {
  position: absolute;
  top: calc(50% - 0.6rem);
  left: calc(50% - 0.1rem);
  height: 1.2rem;
  border-left: 2px solid #ffffff;
}
.input_box .input_wrapper#send_authcode {
  width: calc(100% - 13rem);
}
.input_box .input_wrapper#input_authcode {
  width: calc(100% - 13rem);
  display: none;
}
.input_box .send_authcode, .input_box .check_authcode {
  width: 11.8rem;
  margin-left: 1.2rem;
  height: 5rem;
  line-height: 5rem;
  text-align: center;
  border: 1px solid #d9d9d9;
  border-radius: 0.5rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.input_box .check_authcode {
  display: none;
}

#focus {
  display: none;
}

.message {
  width: 100%;
  max-width: 40rem;
  text-align: left;
  margin-top: 1.5rem;
  margin-left: 1rem;
  margin-bottom: 0.5rem;
  color: #e71616;
}

.privacy_policy_wrap {
  width: 100%;
  max-width: 40rem;
  margin-top: 3rem;
  margin: auto;
}
.privacy_policy_wrap .terms_box {
  width: 100%;
  display: flex;
  flex-flow: column;
}
.privacy_policy_wrap .terms_box .terms_title_box {
  position: relative;
  display: flex;
  align-items: center;
  float: left;
  color: #333;
}
.privacy_policy_wrap .terms_box .terms_title_box .terms_title {
  display: flex;
  margin-bottom: 1rem;
  cursor: pointer;
}
.privacy_policy_wrap .terms_box .terms_title_box .terms_title.all_agree {
  font-size: 1.7rem;
}
.privacy_policy_wrap .terms_box .terms_title_box .pink {
  line-height: 2rem;
  margin-right: 0.5rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: #6868AC;
}
.privacy_policy_wrap .terms_box .terms_title_box .gray {
  line-height: 2rem;
  margin-right: 0.5rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: #929294;
}
.privacy_policy_wrap .terms_box .terms_title_box .all_view {
  line-height: 2rem;
  margin-left: 0.5rem;
  font-size: 1.2rem;
  font-weight: 300;
  color: #929294;
  margin-right: 0.5rem;
}
.privacy_policy_wrap .terms_box .terms_title_box input[type=checkbox] {
  display: none;
}
.privacy_policy_wrap .terms_box .terms_title_box input[type=checkbox] + label {
  margin-left: 3rem;
  line-height: 2rem;
  color: #AAA;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  transition: all 0.2s ease-in-out;
}
.privacy_policy_wrap .terms_box .terms_title_box input[type=checkbox] + label::before, .privacy_policy_wrap .terms_box .terms_title_box input[type=checkbox] + label::after {
  transition: all 0.2s ease-in-out;
  content: "";
  width: 2rem;
  height: 2rem;
  background-color: #fff;
  vertical-align: top;
  position: absolute;
  left: 0;
  top: 0;
}
.privacy_policy_wrap .terms_box .terms_title_box input[type=checkbox] + label::after {
  content: "";
  width: 2rem;
  height: 2rem;
  background: #fff url(../svg/check_gray.svg) no-repeat center;
  border: 1px solid #dedede;
  position: absolute;
  left: 0;
  top: 0;
}
.privacy_policy_wrap .terms_box .terms_title_box input[type=checkbox]:checked + label {
  color: #333;
}
.privacy_policy_wrap .terms_box .terms_title_box input[type=checkbox]:checked + label::after {
  opacity: 1;
  width: 2rem;
  height: 2rem;
  background: #6868AC url(../svg/check.svg) no-repeat center;
  border: 1px solid #6868AC;
}
.privacy_policy_wrap .terms_box .terms_desc {
  width: 100%;
  line-height: 1.8rem;
  color: #929294;
  font-weight: 400;
  margin-bottom: 2rem;
}
.privacy_policy_wrap .terms_box .terms_textarea {
  height: 7rem;
  line-height: 1.6rem;
  display: none;
  padding: 1rem 1.4rem;
  margin-bottom: 1rem;
  border: 1px solid #d9d9d9;
  border-radius: 0.5rem;
  color: #666;
  font-size: 1.2rem;
  cursor: default;
}
.privacy_policy_wrap .terms_box .terms_textarea.essential {
  display: flex;
}
.privacy_policy_wrap .terms_box .terms_textarea::-webkit-scrollbar {
  width: 15px;
}
.privacy_policy_wrap .terms_box .terms_textarea::-webkit-scrollbar-thumb {
  height: 30%;
  background: #B9B9B9;
  border: 4px solid white;
  border-radius: 30px;
}
.privacy_policy_wrap .terms_box .terms_textarea::-webkit-scrollbar-track {
  background: white;
}

.send_btn {
  width: 100%;
  max-width: 40rem;
  height: 5.2rem;
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #6868AC;
  border-radius: 0.5rem;
  font-size: 1.6rem;
  color: #ffffff;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.send_btn.deactive {
  color: #ffffff;
}
.send_btn.gray {
  background-color: #D9D9D9;
  color: black;
}

.sub_menu {
  margin-top: 2.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sub_menu .each {
  color: #B9B9B9;
  font-size: 1.3rem;
  cursor: pointer;
}
.sub_menu .line {
  height: 1rem;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
  border-left: 1px solid #B9B9B9;
}/*# sourceMappingURL=0_input.css.map */