@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  box-sizing: border-box;
  font-family: 微軟正黑體, Arial, Helvetica, sans-serif;
}

html, body {
  overflow-x: hidden;
}

.login_Box {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
}
@media (max-width: 750px) {
  .login_Box {
    flex-flow: column wrap;
  }
}
.login_Box .login_img {
  display: flex;
  width: 70%;
  height: 100%;
  min-height: 100vh;
  background: url(../images/login_img.jpg) no-repeat;
  background-size: cover;
  flex-flow: column wrap;
  background-position: right center;
  justify-content: center;
  align-items: flex-start;
  padding-left: 50px;
}
@media (max-width: 750px) {
  .login_Box .login_img {
    width: 100%;
    height: 300px;
    min-height: 0;
  }
}
.login_Box .login_img a {
  width: 80%;
}
.login_Box .login_img a img {
  width: 100%;
}
.login_Box .login_img img {
  width: 80%;
}
@media (max-width: 750px) {
  .login_Box .login_img img {
    width: 80%;
  }
}
.login_Box .login_img .logo_tit {
  margin-top: 50px;
  position: relative;
  width: 450px;
  height: 36px;
}
.login_Box .login_Wrap {
  width: 30%;
  min-width: 450px;
  margin-top: 50px;
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 750px) {
  .login_Box .login_Wrap {
    width: 100%;
    min-width: 100%;
  }
}
@media (max-width: 400px) {
  .login_Box .login_Wrap {
    width: 100%;
    min-width: none;
  }
}
.login_Box .login_Wrap .login_form {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  margin: auto;
}
@media (max-width: 400px) {
  .login_Box .login_Wrap .login_form {
    width: 95%;
  }
}
.login_Box .login_Wrap .login_form img {
  height: 136px;
}
.login_Box .login_Wrap .login_form .formWrap {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
}
@media (max-width: 400px) {
  .login_Box .login_Wrap .login_form .formWrap {
    width: 100%;
  }
}
.login_Box .login_Wrap .login_form .formWrap p {
  font-size: 18px;
  color: #8f0b0b;
  font-weight: bold;
  margin-top: 20px;
}
.login_Box .login_Wrap .login_form .formWrap .input_style {
  margin-top: 50px;
  position: relative;
}
@media (max-width: 400px) {
  .login_Box .login_Wrap .login_form .formWrap .input_style {
    width: 100%;
  }
}
.login_Box .login_Wrap .login_form .formWrap .input_style .input_style_textarea {
  width: 350px;
  height: 32px;
  border: none;
  border-bottom: #2A1E5C 2px solid;
  outline: none;
  font-style: 26px;
  color: #005E7C;
  position: relative;
}
@media (max-width: 750px) {
  .login_Box .login_Wrap .login_form .formWrap .input_style .input_style_textarea {
    width: 350px;
  }
}
@media (max-width: 400px) {
  .login_Box .login_Wrap .login_form .formWrap .input_style .input_style_textarea {
    width: 100%;
  }
}
.login_Box .login_Wrap .login_form .formWrap .input_style .input_style_textarea:focus ~ .login_label {
  font-size: 10px;
  top: -10px;
  left: 0;
  transition: all 0.3s ease-in;
}
.login_Box .login_Wrap .login_form .formWrap .input_style .input_style_textarea:valid ~ .login_label {
  font-size: 10px;
  top: -10px;
  left: 0;
  transition: all 0.3s ease-in;
}
.login_Box .login_Wrap .login_form .formWrap .input_style .login_label {
  color: #2A1E5C;
  font-size: 18px;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0;
  margin: 0;
  pointer-events: none;
}
.login_Box .login_Wrap .login_form .formWrap .input_style .login_label .login_icon_style {
  margin-right: 5px;
}
.login_Box .login_Wrap .login_form .formWrap input[type=submit] {
  height: 55px;
  width: 350px;
  margin-top: 40px;
  border-radius: 5px;
  border: none;
  background: linear-gradient(45deg, #2A1E5C, #005E7C);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}
@media (max-width: 750px) {
  .login_Box .login_Wrap .login_form .formWrap input[type=submit] {
    width: 350px;
  }
}
@media (max-width: 400px) {
  .login_Box .login_Wrap .login_form .formWrap input[type=submit] {
    width: 100%;
  }
}
.login_Box .login_Wrap .login_form .formWrap input[type=submit]:hover, .login_Box .login_Wrap .login_form .formWrap input[type=submit]:active {
  transition: all 0.3s ease-in-out;
  transform: scale(0.95);
}
@media (max-width: 400px) {
  .login_Box .login_Wrap .login_form .formWrap a {
    width: 100%;
  }
}
.login_Box .login_Wrap .login_form .formWrap a .login_register {
  height: 55px;
  width: 350px;
  margin-top: 40px;
  border-radius: 5px;
  background: #fff;
  border: 3px solid #2A1E5C;
  font-size: 24px;
  color: #2A1E5C;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media (max-width: 750px) {
  .login_Box .login_Wrap .login_form .formWrap a .login_register {
    width: 350px;
  }
}
@media (max-width: 400px) {
  .login_Box .login_Wrap .login_form .formWrap a .login_register {
    width: 100%;
  }
}
.login_Box .login_Wrap .login_form .formWrap a .login_register:hover, .login_Box .login_Wrap .login_form .formWrap a .login_register:active {
  transition: all 0.5s ease-in-out;
  transform: scale(0.95);
}
.login_Box .login_Wrap .login_form .formWrap .login_forget {
  font-size: 18px;
  width: 350px;
  font-weight: bold;
  color: #2A1E5C;
  margin-top: 20px;
  text-align: right;
}
@media (max-width: 750px) {
  .login_Box .login_Wrap .login_form .formWrap .login_forget {
    width: 350px;
  }
}
@media (max-width: 400px) {
  .login_Box .login_Wrap .login_form .formWrap .login_forget {
    width: 100%;
  }
}
.login_Box .login_Wrap .login_form .formWrap .login_forget:hover, .login_Box .login_Wrap .login_form .formWrap .login_forget:active {
  transition: all 0.5s ease-in-out;
  color: #005E7C;
}
.login_Box .login_Wrap .login_form #forget_form {
  display: none;
}

.register_Box {
  background: url(../images/login_img.jpg);
  width: 100%;
}
.register_Box .register_Wrap {
  width: 85%;
  margin: auto;
  display: flex;
  flex-flow: column wrap;
  max-width: 1000px;
}
@media (max-width: 550px) {
  .register_Box .register_Wrap {
    width: 95%;
  }
}
.register_Box .register_Wrap .register_WrapTop {
  width: 100%;
  margin-top: 50px;
}
.register_Box .register_Wrap .register_WrapTop img {
  width: 60%;
  min-width: 300px;
}
.register_Box .register_Wrap .register_bodyBorder {
  margin-top: 20px;
  width: 100%;
  border-radius: 5px;
  padding: 8px;
  border: 1px solid #fff;
}
@media (max-width: 550px) {
  .register_Box .register_Wrap .register_bodyBorder {
    width: 100%;
    padding: 0;
  }
}
.register_Box .register_Wrap .register_bodyBorder .register_body {
  width: 100%;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  flex-flow: column wrap;
  margin: auto;
}
@media (max-width: 750px) {
  .register_Box .register_Wrap .register_bodyBorder .register_body {
    background: #fff;
  }
}
@media (max-width: 550px) {
  .register_Box .register_Wrap .register_bodyBorder .register_body {
    width: 100%;
  }
}
.register_Box .register_Wrap .register_bodyBorder .register_body .register_tit p {
  font-size: 30px;
  font-weight: bold;
  color: #2A1E5C;
  margin: 50px 50px 0 35px;
  width: auto;
  display: inline-block;
  border-left: 10px solid #FFC552;
  padding-left: 0.5em;
}
@media (max-width: 750px) {
  .register_Box .register_Wrap .register_bodyBorder .register_body .register_tit p {
    font-size: 26px;
    margin: 50px 10px 0;
  }
}
@media (max-width: 550px) {
  .register_Box .register_Wrap .register_bodyBorder .register_body .register_tit p {
    font-size: 20px;
  }
}
.register_Box .register_Wrap .register_bodyBorder .register_body .register_formWrap {
  width: 100%;
  margin-top: 50px;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-flow: row wrap;
}
@media (max-width: 992px) {
  .register_Box .register_Wrap .register_bodyBorder .register_body .register_formWrap {
    min-width: none;
  }
}
.register_Box .register_Wrap .register_bodyBorder .register_body .register_formWrap .register_form {
  justify-content: center;
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  width: 49%;
}
@media (max-width: 992px) {
  .register_Box .register_Wrap .register_bodyBorder .register_body .register_formWrap .register_form {
    width: 100%;
  }
}
.register_Box .register_Wrap .register_bodyBorder .register_body .register_formWrap .register_form .input_style {
  width: 85%;
  margin-top: 60px;
  position: relative;
}
.register_Box .register_Wrap .register_bodyBorder .register_body .register_formWrap .register_form .input_style .register_ps {
  font-size: 16px;
  color: #8f0b0b;
  font-weight: bold;
  margin-top: 20px;
  position: absolute;
  top: -55px;
  left: 0;
}
.register_Box .register_Wrap .register_bodyBorder .register_body .register_formWrap .register_form .input_style .input_style_textarea {
  width: 100%;
  height: 32px;
  border: none;
  border-bottom: #2A1E5C 2px solid;
  outline: none;
  font-size: 16px;
  color: #005E7C;
  position: relative;
  background: transparent;
}
.register_Box .register_Wrap .register_bodyBorder .register_body .register_formWrap .register_form .input_style .input_style_textarea:focus ~ .register_label_text {
  font-size: 10px;
  color: #2A1E5C;
  top: -10px;
  left: 0;
  transition: all 0.3s ease-in;
}
.register_Box .register_Wrap .register_bodyBorder .register_body .register_formWrap .register_form .input_style .input_style_textarea:valid ~ .register_label_text {
  color: #2A1E5C;
  font-size: 10px;
  top: -10px;
  left: 0;
  transition: all 0.3s ease-in;
}
.register_Box .register_Wrap .register_bodyBorder .register_body .register_formWrap .register_form .input_style .register_label_text {
  color: #005E7C;
  font-size: 18px;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0;
  margin: 0;
  pointer-events: none;
}
.register_Box .register_Wrap .register_bodyBorder .register_body .register_formWrap .register_form .input_style .register_label_text .login_icon_style {
  margin-right: 5px;
}
.register_Box .register_Wrap .register_bodyBorder .register_body .register_formWrap .input_radioStyle {
  width: 100%;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row nowrap;
}
@media (max-width: 750px) {
  .register_Box .register_Wrap .register_bodyBorder .register_body .register_formWrap .input_radioStyle {
    flex-flow: column wrap;
    align-items: flex-start;
    padding-left: 35px;
  }
}
.register_Box .register_Wrap .register_bodyBorder .register_body .register_formWrap .input_radioStyle .register_radio {
  font-size: 18px;
  font-weight: bold;
  color: #005E7C;
  margin-left: 5px;
  margin-right: 0px;
  margin-top: 5px;
}
@media (max-width: 750px) {
  .register_Box .register_Wrap .register_bodyBorder .register_body .register_formWrap .input_radioStyle .register_radio {
    margin-bottom: 0.5em;
  }
}
.register_Box .register_Wrap .register_bodyBorder .register_body .register_formWrap .input_radioStyle .input_radioStyle_options {
  display: flex;
  flex-flow: row wrap;
}
.register_Box .register_Wrap .register_bodyBorder .register_body .register_formWrap .input_radioStyle .input_radioStyle_options .register_radio_choose {
  font-weight: bold;
  margin-top: 5px;
  color: #005E7C;
}
.register_Box .register_Wrap .register_bodyBorder .register_body .register_formWrap .input_radioStyle .input_radioStyle_options .register_radioInput:not(old) {
  width: 10px;
  margin: 0;
  padding: 0;
  opacity: 0;
}
.register_Box .register_Wrap .register_bodyBorder .register_body .register_formWrap .input_radioStyle .input_radioStyle_options .register_radioInput:not(old) + label {
  display: inline-block;
  padding-left: 30px;
  line-height: 24px;
  background: url("../images/radioStyle.png") no-repeat;
}
.register_Box .register_Wrap .register_bodyBorder .register_body .register_formWrap .input_radioStyle .input_radioStyle_options .register_radioInput:not(old):checked + label {
  background: url("../images/radioStyle_checked.png") no-repeat;
}
.register_Box .register_Wrap .register_Wrapfooter {
  width: 100%;
  display: flex;
  align-items: center;
  flex-flow: column wrap;
  margin-top: 20px;
  margin-bottom: 50px;
}
.register_Box .register_Wrap .register_Wrapfooter p {
  width: 100%;
  font-size: 14px;
  color: #fff;
  text-align: right;
}

.BTNWrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.BTNWrap input[type=submit] {
  height: 55px;
  max-width: 350px;
  width: 90%;
  margin-top: 40px;
  border-radius: 5px;
  border: none;
  background: linear-gradient(45deg, #2A1E5C, #005E7C);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}
.BTNWrap input[type=submit]:hover, .BTNWrap input[type=submit]:active {
  transition: all 0.3s ease-in-out;
  transform: scale(0.95);
}/*# sourceMappingURL=login.css.map */