.d_login_page {
  background: url("../img/footer/pattern_main.jpg");
  padding: 60px 0 150px;
}
.d_login_page .d_login_form {
  max-width: 526px;
  width: 100%;
  margin: auto;
  background: #fff;
  padding: 0 65px;
  padding-top: 70px;
  margin-top: 48px;
  padding-bottom: 62px;
  overflow:hidden;
}
.d_login_page .d_login_form .d_login_top {
  text-align: center;
  margin-bottom: 50px;
}
.d_login_page .d_login_form .d_login_top h2 {
  font-size: 1.875em;
  font-weight: bold;
}
.d_login_page .d_login_info h3 {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.d_login_page .d_login_info input {
  width: 100%;
  margin-bottom: 35px;
}
.d_login_page .d_login_info input::placeholder {
  color: #6796c4;
}
.d_login_btn {
  margin: 50px 0;
}

/* JOIN IN */
.d_form_check {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
}
.d_form_check:nth-child(1) {
  margin-bottom: 30px;
}
.d_form_check input[type="checkbox"] {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
  outline: 0;
  z-index: -1;
  overflow: hidden;
}
.d_form_check label span {
  display: inline-flex;
  width: 25px;
  height: 25px;
  background: #b8b8b8;
  border-radius: 50%;
  cursor: pointer;
  margin-right: 8px;
  vertical-align: middle;
}
.d_form_check input[type="checkbox"]:checked + label span {
  background: url("../img/login/d_check_on.png") no-repeat 50% 50%;
}
.d_form_check label {
  font-weight: bold;
  font-size: 1.125rem;
}
.d_form_check label.agree {
  font-weight: bold;
  font-size: 1rem;
}
.d_form_check b {
  display: inline-block;
  width: 71px;
  height: 24px;
  line-height: 24px;
  color: #fff;
  font-weight: bold;
  background-color: #ffb81d;
  border-radius: 20px;
  text-align: center;
  vertical-align: middle;
  font-size: 0.9375rem;
}
.form_radio_wrap {
  position: relative;
  padding-top: 50px;
}
.form_radio_wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200%;
  height: 1px;
  background-color: #ccc;
}
@media (max-width: 720px) {
  .d_login_page {
    background: #fff;
    padding: 80px 0 50px;
  }
  .d_login_page .d_login_form {
    width: 92%;
    margin-top: 0;
    padding: 0;
    padding-top: 40px;
}
  .d_login_page .d_login_form {
    max-width: initial;
  }
  .d_form_check {
    flex-direction: column;
  }
  .d_form_check label {
    display: flex;
  }
  .d_form_check b {
    margin-left: 35px;
  }
}