.sign_in_page {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}

.sign_in_page .right_image_side {
  width: 50%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.sign_in_page .left_side {
  width: 50%;
  padding: 25px 28px;
}

.sign_in_page .top_part {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  box-align: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  box-pack: justify;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: justify;
}

.sign_in_page .top_part img {
  max-width: 98px;
}

.sign_in_page .top_part .topPartBtn {
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.sign_in_page .top_part .topPartBtn.active {
  opacity: 1;
}

.page_parts {
  width: 408px;
  margin: 0 auto;
}

.forms_wrap {
  height: calc(100% - 60px);
}

.sign_in_part, .sign_up_part, .forgot_pw_part, .set_new_pw {
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  -webkit-box-direction: normal;
  box-direction: normal;
  -moz-flex-direction: column;
  flex-direction: column;
  -ms-flex-direction: column;
  -webkit-box-pack: center;
  box-pack: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}

.sign_in_part .under_form, .sign_up_part .under_form, .forgot_pw_part .under_form, .set_new_pw .under_form {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 24px;
}

.sign_in_part .under_form .gray3_c, .sign_up_part .under_form .gray3_c, .forgot_pw_part .under_form .gray3_c, .set_new_pw .under_form .gray3_c {
  margin-right: 8px;
}

.sign_in_part .under_form .signup_link, .sign_in_part .under_form .singin_link, .sign_up_part .under_form .signup_link, .sign_up_part .under_form .singin_link, .forgot_pw_part .under_form .signup_link, .forgot_pw_part .under_form .singin_link, .set_new_pw .under_form .signup_link, .set_new_pw .under_form .singin_link {
  margin-right: 16px;
}

.sign_in_part .red_c, .sign_up_part .red_c, .forgot_pw_part .red_c, .set_new_pw .red_c {
  cursor: pointer;
}

.sign_in_part {
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.sign_in_part.active {
  opacity: 1;
}

.sign_in_part .subtitle_login {
  margin-bottom: 8px;
}

.sign_in_part .text_login {
  margin-top: 8px;
  margin-bottom: 24px;
}

.sign_in_part .submit_wrap {
  position: relative;
}

.sign_in_part .box {
  pointer-events: none;
  position: absolute;
  top: 11px;
  right: 15px;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.sign_in_part .box.loader {
  opacity: 1;
}

.sign_in_part .loader-03 {
  display: inline-block;
  width: 18px;
  height: 18px;
  vertical-align: middle;
  pointer-events: none;
  border: 3px solid #fff;
  border-bottom-color: transparent;
  border-radius: 50%;
  -webkit-animation: 1s loader-03 linear infinite;
          animation: 1s loader-03 linear infinite;
  position: relative;
}

@-webkit-keyframes loader-03 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes loader-03 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.sign_up_part {
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.sign_up_part.active {
  opacity: 1;
}

.sign_up_part .text_singup {
  margin-top: 8px;
  margin-bottom: 24px;
}

.forgot_pw_part, .set_new_pw {
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.forgot_pw_part.active, .set_new_pw.active {
  opacity: 1;
}

.forgot_pw_part .text_fpw, .set_new_pw .text_fpw {
  margin-top: 8px;
  margin-bottom: 24px;
}

.forgot_pw_part .singin_link, .set_new_pw .singin_link {
  margin-top: 24px;
  cursor: pointer;
}

.registration_video_part {
  height: calc(100% - 60px);
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  -webkit-box-direction: normal;
  box-direction: normal;
  -moz-flex-direction: column;
  flex-direction: column;
  -ms-flex-direction: column;
  -webkit-box-pack: center;
  box-pack: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  max-width: 408px;
  margin: 0 auto;
}

.registration_video_part .basicBtn {
  -webkit-box-pack: center;
  box-pack: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  font-size: 16px;
  height: 48px;
}

.registration_video_part .video_text {
  margin-top: 8px;
  margin-bottom: 29px;
}

.registration_video_part .registration_video {
  margin-bottom: 24px;
  position: relative;
  cursor: pointer;
  max-height: 250px;
}

.registration_video_part .registration_video * {
  max-height: 250px;
}

.set_new_pw_part {
  height: calc(100% - 60px);
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  -webkit-box-direction: normal;
  box-direction: normal;
  -moz-flex-direction: column;
  flex-direction: column;
  -ms-flex-direction: column;
  -webkit-box-pack: center;
  box-pack: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  max-width: 408px;
  margin: 0 auto;
}

.set_new_pw_part .text_new_pw {
  margin-top: 8px;
  margin-bottom: 24px;
}

@media screen and (max-width: 1024px) {
  .sign_in_page {
    -webkit-box-orient: vertical;
    box-orient: vertical;
    -webkit-box-direction: normal;
    box-direction: normal;
    -moz-flex-direction: column;
    flex-direction: column;
    -ms-flex-direction: column;
  }
  .sign_in_page .right_image_side {
    width: 100%;
    height: 690px;
  }
  .sign_in_page .left_side {
    width: 100%;
  }
  .forms_wrap {
    padding-top: 97px;
    padding-bottom: 47px;
    height: auto;
  }
  .registration_video_part {
    padding-top: 97px;
    padding-bottom: 47px;
  }
  .set_new_pw_part {
    padding-top: 97px;
    padding-bottom: 47px;
  }
}

@media screen and (max-width: 767px) {
  .sign_in_page .right_image_side {
    width: 100%;
    height: auto;
  }
  .sign_in_page .right_image_side::before {
    content: "";
    display: block;
    padding-top: 90%;
  }
  .sign_in_page .left_side {
    width: 100%;
  }
  .page_parts {
    width: 100%;
  }
  .forms_wrap {
    padding-top: 73px;
    padding-bottom: 48px;
  }
  .sign_in_part .under_form, .sign_up_part .under_form, .forgot_pw_part .under_form {
    -webkit-box-orient: vertical;
    box-orient: vertical;
    -webkit-box-direction: normal;
    box-direction: normal;
    -moz-flex-direction: column;
    flex-direction: column;
    -ms-flex-direction: column;
  }
  .sign_in_part .under_form .gray3_c, .sign_up_part .under_form .gray3_c, .forgot_pw_part .under_form .gray3_c {
    margin-bottom: 8px;
  }
  .sign_in_part .text_login {
    margin-bottom: 32px;
  }
  .sign_up_part .text_singup {
    margin-bottom: 32px;
  }
  .forgot_pw_part .text_fpw {
    margin-bottom: 32px;
  }
  .registration_video_part {
    padding-top: 73px;
    padding-bottom: 48px;
  }
  .registration_video_part .video_text {
    margin-bottom: 32px;
  }
  .set_new_pw_part {
    padding-top: 73px;
    padding-bottom: 48px;
  }
  .set_new_pw_part .text_new_pw {
    margin-bottom: 32px;
  }
}
/*# sourceMappingURL=signIn.css.map */