body {
  width: 100vw;
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 500;
  background-image: url("../../Home/images/bg/bg.jpg");
  background-position: center 0;
  background-size: cover;
  overflow-x: hidden;
  min-height: 100vh;
}

a {
  text-decoration: none;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 777px;
    margin: auto;
}

.title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  padding: 45px 0;
  color: #313c96;
}

.login-form {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 768px) {
  .login-form {
    max-width: 100%;
  }
}
.login-form label {
  padding: 5px;
}
.login-form .smail-text {
  font-size: 0.8rem;
}
.login-form .form-group {
  padding-top: 3px;
  position: relative;
}
.login-form .form-group label {
  color: #313c96;
}
.login-form .forget {
  color: #ff912b;
  position: absolute;
  right: 0;
  top: 0px;
}
.login-form .hr {
  border-bottom: solid 1px #e7e7e7;
  position: relative;
  margin: 30px -20px;
}
.login-form .hr:before {
  content: "or";
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 0 5px;
}
.login-form .form-control {
  background-color: #f7f7f7;
  line-height: 1.5;
}
.login-form .captcha {
  position: relative;
}
.login-form .captcha .code {
  width: calc(100% - 60px);
  height: 60%;
  background-color: #f0f0f0;
  position: absolute;
  bottom: 0;
  border: 1px solid #000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.login-form .btn {
  border-radius: 8px;
  padding: 10px 0;
  font-size: 1.3rem;
}
.login-form .btn:active {
  transform: scale(0.98);
}
.login-form .login-btn {
  background-color: #ff912b;
  color: #fff;
}
.login-form .login-btn:hover {
  background-color: #ff8412;
}
.login-form .register-btn {
  border: solid 1px #ff912b;
}
.login-form .register-btn:hover {
  background-color: #ff912b;
}
.login-form .hint {
  color: #ff912b;
  text-align: center;
}

.copyright {
  width: 100%;
  padding: 20px 0;
  background-color: #313c96;
  position: relative;
  bottom: -8px;
  left: 0;
  color: #fff;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .copyright {
    flex-direction: column;
    font-size: 0.8rem;
    font-weight: 300;
  }
}
.copyright a {
  color: #fff;
}
.copyright ul {
  padding: 0;
  margin: 0;
  list-style: none;
  flex: 1.5;
}
.copyright .contact {
  display: flex;
  flex-wrap: wrap;
  flex: 1;
  max-width: 1700px;
  font-weight: 100;
}
.copyright .contact .logo {
  color: black;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .copyright .contact .logo {
    margin-top: 20px;
    justify-content: center;
    align-items: center;
  }
}
.copyright .contact .logo .departments {
  justify-content: flex-end;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .copyright .contact .logo .departments {
    justify-content: center;
  }
}
.copyright .contact .logo .departments .department {
  padding: 0 10px;
}
.copyright .contact .logo .departments .department:first-child {
  border-right: solid 2px black;
}
.copyright .contact .logo img {
  width: 200px;
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  .copyright .contact .logo img {
    width: 150px;
  }
}
.copyright .contact .logo .suggest {
  text-align: center;
  justify-content: center;
  font-size: 0.8rem;
}/*# sourceMappingURL=login.css.map */