@charset "UTF-8";
.login-frame {
  width: 100%;
  height: 100%;
  min-height: 100%;
  background-color: #f5f5f5;
  overflow: auto;
}
.login-frame .login-header {
  height: 35%;
  background-color: #191919;
  border-bottom-right-radius: 90px;
  position: relative;
}
.login-frame .login-header .logo {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 30px;
}
.login-frame .login-header .text {
  color: #ffffff;
  position: absolute;
  bottom: 30px;
  left: 30px;
}
.login-frame .wrapper {
  padding: 30px 20px;
}
@media screen and (min-width: 375px) {
  .login-frame .wrapper {
    padding: 30px 30px;
  }
}
.login-frame .wrapper.verify {
  padding: 30px 15px;
}
@media screen and (min-width: 375px) {
  .login-frame .wrapper.verify {
    padding: 30px 30px;
  }
}
@media screen and (min-width: 414px) {
  .login-frame .wrapper.verify {
    padding: 30px 50px;
  }
}
.login-frame .wrapper .input-frame {
  width: 100%;
  border-radius: 100px;
  height: 45px;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  padding: 5px 20px;
}
.login-frame .wrapper .input-frame .icon {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}
.login-frame .wrapper .input-frame .my-input {
  width: 100%;
  height: 100%;
  outline: none;
  border: none;
  font-size: 14px;
  font-family: "微軟正黑體";
  color: #555;
}
.login-frame .wrapper .remember-frame {
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.login-frame .wrapper .my-button {
  width: 100%;
  height: 45px;
  font-family: "微軟正黑體", sans-serif;
  font-weight: bold;
  background-color: #F49C00;
  color: #fff;
  outline: none;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  transform: translate3d(0, 0, 0);
  transition: background 400ms cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  margin-top: 30px;
}
@media screen and (min-width: 375px) {
  .login-frame .wrapper .my-button {
    margin-top: 30px;
  }
}
.login-frame .wrapper .my-button.disabled {
  background: #cccccc;
  box-shadow: none;
  pointer-events: none;
}
.login-frame .wrapper .my-button:active {
  outline: none;
  box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
}
.login-frame .wrapper .info-frame {
  margin-top: 20px;
  line-height: 1.8;
  font-size: 14px;
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  padding: 10px;
}
.login-frame .wrapper .info-frame ul {
  counter-reset: number;
}
.login-frame .wrapper .info-frame ul li {
  display: flex;
  align-items: flex-start;
}
.login-frame .wrapper .info-frame ul li::before {
  counter-increment: number;
  content: counter(number);
  background-color: #222222;
  color: #ffffff;
  border-radius: 100%;
  display: inline-flex;
  justify-content: center;
  min-width: 16px;
  width: 16px;
  height: 16px;
  font-size: 12px;
  line-height: 16px;
  margin-right: 8px;
  margin-top: 4px;
}
.login-frame .wrapper .copyright {
  margin-top: 25px;
  color: #aaa;
  font-size: 14px;
  text-align: center;
  width: 100%;
}
.login-frame .wrapper .description {
  font-size: 14px;
  line-height: 1.4;
}
.login-frame .wrapper .fail-msg {
  display: none;
  text-align: center;
  margin-top: 20px;
  font-size: 16px;
  font-weight: 600;
  color: #F44336;
  border: 1px solid #F44336;
  padding: 5px;
  border-radius: 3px;
  line-height: 16px;
}
.login-frame .wrapper .fail-msg.fail {
  display: block;
}
.login-frame .wrapper .fail-msg .icon {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  vertical-align: bottom;
}
.login-frame .wrapper .verify-text {
  margin-top: 30px;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}
.login-frame .wrapper .verify-text.fail {
  display: none;
}
.login-frame .wrapper .verify-input-frame {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}
.login-frame .wrapper .verify-input-frame .verify-input {
  width: calc(16.66% - 20px);
  text-align: center;
  outline: none;
  border: none;
  color: #F49C00;
  font-weight: bold;
  font-size: 28px;
  padding: 0px 0px 5px 0px;
  border-bottom: 3px solid #F49C00;
  background-color: transparent;
  border-radius: 0px;
}
.login-frame .wrapper .text {
  display: inline-block;
  text-align: center;
  font-size: 14px;
  margin-top: 15px;
  text-decoration: underline;
}