/***************************************
    copyright by MakeWeb.com.tw 
***************************************/
.post_form {
  display: flex;
  gap: 50px;
}
.post_form .content_text_box {
  flex: 0.8;
}
.post_form .sign_in_box {
  flex: 1;
}
.post_form .sign_in_box .form_box {
  padding: 30px;
  background: #d9eebd;
}
.post_form .sign_in_box .form_box dl {
  margin: 0 auto;
  color: #444;
}
.post_form .sign_in_box .form_box dl dt {
  color: #85b244;
}
.post_form .sign_in_box .form_box dl dd {
  padding: 5px 0;
}
.post_form .member_login {
  background-color: #0755a7;
  color: #fff;
}
.post_form #submit_btn {
  background-color: #85b244;
  color: #fff;
}

/*-------------------------------------------- 
    Media Queries 
---------------------------------------------*/
/* Portrait and Landscape */
/*@media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (-webkit-min-device-pixel-ratio: 2) {
}*/
@media screen and (max-width: 999px) {
  dl dt.verify_dt {
    height: 40px;
  }
}
/*iPhoe*/
@media screen and (max-width: 760px) {
  .post_form {
    flex-direction: column;
  }
  .content_text_box {
    width: 100%;
  }
  .sign_in_box {
    width: 100%;
  }
  dl dt {
    width: 260px;
  }
  input[type=text],
  input[type=password] {
    width: 260px;
  }
  .drop_select {
    width: 280px;
  }
  textarea {
    width: 274px;
  }
}