@charset "UTF-8";
/* ^scss에서 수정해주세요!  Don't edit .css file, Only work on the scss*/
.p_login .main_container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  padding: 20px;
  width: 100%;
  min-height: 100vh;
}
.p_login .login_form {
  width: 540px;
  margin: 0 auto;
}
@media screen and (max-width: 767.9px) {
  .p_login .login_form {
    width: 100%;
  }
}
.p_login .login_form .pg_guide {
  display: block;
  padding: 80px 0 0;
  width: 100%;
  text-align: center;
  font-weight: 500;
  font-size: 22px;
  line-height: 26px;
  background: url("../img/icon_certify.png") no-repeat 50% 0;
  background-size: auto 60px;
  margin: 0 0 52px;
}
@media screen and (max-width: 767.9px) {
  .p_login .login_form .pg_guide {
    padding: 46px 0 0;
    font-size: 16px;
    line-height: 19px;
    background-size: auto 42px;
    margin: 0 0 49px;
  }
}
.p_login .login_form .input_box {
  margin-bottom: 27px;
}
@media screen and (max-width: 767.9px) {
  .p_login .login_form .input_box {
    margin-bottom: 20px;
  }
}
.p_login .login_form .input_box .input_tit {
  display: inline-block;
  padding: 0 17px 8px;
  line-height: 21px;
  font-weight: 500;
  font-size: 18px;
  user-select: none;
  cursor: pointer;
}
@media screen and (max-width: 767.9px) {
  .p_login .login_form .input_box .input_tit {
    padding: 0 7px 10px 8px;
    line-height: 17px;
    font-size: 14px;
  }
}
.p_login .login_form .input_box .input_tit .required {
  margin-left: -2px;
  font-style: normal;
}
.p_login .login_form .input_box .certi_input {
  padding: 13px 17px 14px;
  height: 50px;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  border: 1px solid #E0E7F0;
  border-radius: 25px;
  box-shadow: 0 1px 7px 2px #E0E7F0;
}
.p_login .login_form .input_box .certi_input::placeholder {
  font-size: 18px;
  color: #A8B6C1;
}
@media screen and (max-width: 767.9px) {
  .p_login .login_form .input_box .certi_input {
    padding: 11px 15px;
    height: 40px;
    font-size: 13px;
    line-height: 16px;
    border-radius: 20px;
  }
}
.p_login .login_form .check_area {
  padding: 3px 19px 30px 17px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767.9px) {
  .p_login .login_form .check_area {
    padding: 2px 10px 20px;
    justify-content: left;
  }
}
.p_login .login_form .check_area .type_chk {
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding: 0 0 0 26px;
  line-height: 21px;
  font-size: 18px;
  overflow: hidden;
  cursor: pointer;
  user-select: none;
}
@media screen and (max-width: 767.9px) {
  .p_login .login_form .check_area .type_chk {
    font-size: 14px;
    margin-right: 15px;
  }
}
.p_login .login_form .check_area .type_chk input {
  position: absolute;
  left: -2px;
  width: 1px;
  height: 1px;
  background: transparent;
  border: 0;
}
.p_login .login_form .check_area .type_chk:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  min-width: 21px;
  width: 21px;
  height: 21px;
  border: 2px solid #e5e8e9;
  border-radius: 3px;
  background: #fff url("../img/chk_on.png") no-repeat 50% 4px;
  background-size: 12px auto;
}
.p_login .login_form .check_area .type_chk:has(:checked):before {
  background-color: #00853B;
  border-color: #00853B;
}
.p_login .login_form .check_area .type_chk:has(:disabled):before {
  opacity: 0.5;
}
.p_login .login_form .check_area .type_chk.no_txt:before {
  margin-right: 0;
}
.p_login .login_form .check_area .type_chk__wrap {
  gap: 7px 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.p_login .login_form .login_btn {
  padding: 18px;
  width: 100%;
  height: 60px;
  font-weight: 600;
  font-size: 20px;
  border-radius: 30px;
  box-shadow: 0 5px 10px 5px rgba(0, 133, 59, 0.2);
}
@media screen and (max-width: 767.9px) {
  .p_login .login_form .login_btn {
    height: 50px;
    font-size: 18px;
  }
}
.p_login .link_area {
  padding: 50px 0 0;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767.9px) {
  .p_login .link_area {
    padding: 30px 0;
  }
}
.p_login .link_area a {
  position: relative;
  padding: 10px;
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  letter-spacing: -0.32px;
}
@media screen and (max-width: 767.9px) {
  .p_login .link_area a {
    font-size: 15px;
  }
}
.p_login .link_area a + a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  display: block;
  width: 1px;
  height: 14px;
  background: #4F555A;
  opacity: 0.16;
}
.p_login .footer__link_wrap {
  margin-top: 30px;
}

.p_terms .com_box {
  padding: 20px;
}