#signup {
  width: 100%;
  height: auto;
  display: flex;
}

#signup .signup_left {
  display: flex;
  flex-direction: column;
  width: 50%;
  max-width: 700px;
  height: 100vh;
  position: fixed;
  background: #f7f7f7;
  padding: 50px;
}

#signup .signup_left .signup_logo {
  width: 100%;
  height: auto;
}

#signup .signup_left .signup_img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#signup .signup_right {
  width: 50%;
  height: 100%;
  min-height: 100vh;
  position: relative;
  left: 50%;
  background: #fff;
  padding: 50px;
  overflow: hidden;
  z-index: 9;
}

#signup .signup_right::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -250px;
  width: 600px;
  height: 600px;
  background: url(/assets/oscp_logo_03.png);
  z-index: -1;
}

#signup .signup_right .title {
  width: 100%;
  height: auto;
  padding-bottom: 40px;
}

#signup .signup_right .title>h2 {
  font-family: "S-CoreDream-7ExtraBold";
  font-size: 3.125rem;
  color: #111;
  letter-spacing: -0.05rem;
}

#signup .signup_right .title>p {
  font-family: "S-CoreDream-4Regular";
  font-size: 1rem;
  color: #999999;
  padding-top: 5px;
}

#signup .signup_right .signup_input {
  width: 100%;
  height: auto;
}

#signup .signup_right .signup_input .input_con {
  width: 100%;
  height: auto;
  padding-bottom: 15px;
}

#signup .signup_right .signup_input .input_con label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #333333;
  letter-spacing: -0.02rem;
  position: relative;
}

#signup .signup_right .signup_input .input_con label::after {
  content: "*";
  position: absolute;
  top: 2px;
  right: -10px;
  font-size: 0.875rem;
  color: #ff6767;
}

#signup .signup_right .signup_input .input_con>div {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #cccccc;
  display: flex;
}

#signup .signup_right .signup_input .input_con>div.check_con {
  border-bottom: 1px solid #ff7b7b;
}

#signup .signup_right .signup_input .input_con>div.password_con>input {
  letter-spacing: 0.2rem;
}

#signup .signup_right .signup_input .input_con>div.check_password_con>input {
  letter-spacing: 0.2rem;
}

#signup .signup_right .signup_input .input_con>p {
  font-size: 0.75rem;
  font-weight: 400;
  color: #ff7b7b;
  letter-spacing: -0.02rem;
  padding: 4px 0 0 5px;
}

#signup .signup_right .signup_input .input_con>p::before {
  content: "* ";
}

#signup .signup_right .signup_input .input_con>div>button {
  width: 120px;
  height: 34px;
  border-radius: 5px;
  background: #8286dd;
  color: #fff;
  font-size: 0.938rem;
  font-weight: 400;
  margin: -2px 5px 0 0;
}

#signup .signup_right .signup_input .input_con>div>button:hover {
  background: #54578f;
}

#signup .signup_right .signup_input .input_con>div>button.complete {
  opacity: 0.6;
  cursor: default;
}

#signup .signup_right .signup_input .input_con>div>button.complete:hover {
  background: #8286dd;
}

#signup .signup_right .signup_input .input_con>div>button.complete::before {
  content: "\2713";
  margin-right: 10px;
}

#signup .signup_right .signup_input .input_con input {
  border: 0;
  width: 100%;
  height: 36px;
  padding: 0 10px;
  font-size: 1rem;
  background: transparent;
  color: #555;
}

#signup .signup_right .signup_input .input_con input::placeholder {
  font-family: "Noto Sans KR", sans-serif;
  font-size: 0.875rem;
  font-weight: 300;
  color: #c9c9c9;
  letter-spacing: -0.05rem;
}

#signup .signup_right .signup_input .input_con .id_con input {
  width: 80%;
}

#signup .signup_right .signup_input .input_con .phone_con input {
  width: 80%;
}

#signup .signup_right .signup_input .btn_area {
  width: 100%;
  height: auto;
  padding-bottom: 35px;
}

#signup .signup_right .signup_input .btn_area>button {
  height: 50px;
  border-radius: 5px;
  font-size: 1.125rem;
  font-weight: 400;
}

#signup .signup_right .signup_input .btn_area>button.signup_btn {
  width: 70%;
  background: #8286dd;
  color: #fff;
}

#signup .signup_right .signup_input .btn_area>button.signup_btn:hover {
  background: #54578f;
}

#signup .signup_right .signup_input .btn_area>button.cancel_btn {
  width: 30%;
  background: #dddddd;
  color: #999;
}

#signup .signup_right .signup_input .btn_area>button.cancel_btn:hover {
  background: #aaaaaa;
  color: #fff;
}

#signup .footer {
  width: auto;
  height: auto;
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
}

#signup .footer>p {
  font-size: 0.875rem;
  font-weight: 400;
  color: #bbbbbb;
}

/* media query */
@media all and (max-width: 1025px) {
  #signup .signup_left {
    width: 100%;
    max-width: 100%;
    position: relative;
  }

  #signup .signup_right {
    width: 60%;
    min-width: 500px;
    height: auto;
    min-height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 30px 30px;
    border-radius: 5px;
  }

  #signup .signup_right::after {
    display: none;
  }

  #signup .signup_right .title {
    text-align: center;
    padding-bottom: 20px;
  }

  #signup .signup_right .title>h2 {
    font-size: 2rem;
  }

  #signup .signup_right .title>p {
    font-size: 0.875rem;
    padding-top: 2px;
  }

  #signup .signup_right .signup_input .input_con {
    padding-bottom: 15px;
  }

  #signup .signup_right .signup_input .input_con>div {
    background: #fff;
  }

  #signup .signup_right .signup_input .input_con>div>button {
    width: 100px;
    margin: 0px 5px 0 0;
    font-size: 0.938rem;
  }

  #signup .signup_right .signup_input .input_con label {
    font-size: 0.875rem;
  }

  #signup .signup_right .signup_input .input_con input {
    height: 40px;
    font-size: 0.938rem;
    background-color: #fff !important;
  }

  #signup .signup_right .signup_input .btn_area {
    padding: 0;
  }

  #signup .signup_right .signup_input .btn_area>button {
    height: 45px;
    font-size: 0.938rem;
  }
}