@charset "UTF-8";
/* 基本顏色與背景，設在 body */
body {
  font-size: 15px;
  font-family: "Huninn", sans-serif;
  line-height: 1.8;
  color: #393636;
}

.top_header .container {
  margin-top: 0;
}
.top_header .menu a {
  font-size: 16px;
  padding: 0;
  font-weight: normal;
}

.bg {
  padding: 80px 0;
  background: url("../../img/bg.webp") center center/cover;
}

body {
  overflow: auto;
}
body label, body .fa-solid {
  color: #877258;
}

.container {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

.bgcolor {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
}

a {
  font-size: clamp(16px, 2.5vw, 16px);
  padding: 0;
}

a.active {
  font-size: 30px;
}

.bgcolor a.active, .bgcolor a:hover {
  color: #fff;
}

.headerTop a.active:after {
  background: #fff;
}

form {
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(168, 168, 168, 0.5);
  background: #fff;
}

.content .d-flex {
  flex-wrap: wrap;
  justify-content: end;
}
.content label {
  font-weight: normal;
  margin: 0;
}

.form-control {
  text-align: left;
}

.form-group {
  flex-direction: column;
  align-items: start;
}
.form-group div {
  display: flex;
  align-items: center;
}

#mb_no, #password {
  margin-top: 8px;
}

#imgcode {
  height: 40px;
  -o-object-fit: fill;
     object-fit: fill;
}

.form-check-label {
  cursor: pointer;
}

.go_to a, .go_to a:hover {
  color: #9d6d40;
}

a.forget {
  color: #F24;
  margin-top: 20px;
  font-weight: bold;
}

a.forget:hover {
  color: #F24;
}

.go_to {
  margin: 2% 0;
}

#login_message {
  display: block;
  font-size: 16px;
  width: 440px;
}

.btn_blue {
  width: 100%;
  /* margin-top: 20px; */
  height: 40px;
  position: relative;
  background: #C9A07A;
  box-shadow: #9d6d40 0px 4px 0px 0px;
  background-repeat: no-repeat;
  box-sizing: border-box;
  color: #fff;
  border: none;
  transition: all 0.3s ease-in-out;
  z-index: 1;
  overflow: hidden;
}
.btn_blue:before {
  content: "";
  background: #d0ad8c;
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: width 700ms ease-in-out;
  display: inline-block;
}
.btn_blue:hover {
  background: #C9A07A;
  color: #fff;
}

.btn_blue:hover:before, .btn_blue:focus:before {
  width: 100%;
}

@media (min-width: 500px) {
  .content {
    width: 75%;
  }
}
@media (min-width: 700px) and (max-width: 1200px) {
  .bg {
    padding-top: 140px;
  }
}
@media (min-width: 1200px) {
  .content {
    width: 47%;
  }
  .bgcolor {
    padding: 0 15px;
    margin-top: 0;
  }
  .bg {
    padding-top: 180px;
  }
  a.forget {
    margin-top: 0;
  }
}/*# sourceMappingURL=login.css.map */