html {
  width: 100%;
  height: 100%;
}

.wrapper {
  height: 100%;
  width: 100%;
  background: radial-gradient(#50c2c7, #349ea3);
}

.contents-pane {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-panel {
  margin: 1.6rem;
  padding: 1.6rem;
  width: 50.0rem;
  height: 32.0rem;
  border-radius: 0.4rem;
  background: #ffffff;
  border: 1px solid #c0c0c0;
  box-shadow: 0 2px 2px rgba(35, 35, 35, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}

.login-panel .message-area {
  height: 3rem;
  display: flex;
  align-items: center;
}

.login-panel .message-area .message {
  font-size: 1.6rem;
}

.login-panel .message-area .message.error {
  color: #BB393B;
}

.login-panel .login-form {
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.login-panel .login-form li + li {
  margin-top: 1.6rem;
}

.login-panel .top {
  display: flex;
  align-items: center;
}

.login-panel h1 {
  color: #5a5a5a;
  font-weight: bold;
  letter-spacing: 2px;
  font-size: 2rem;
}

.login-panel .system-title {
  position: relative;
  margin-top: 0.8rem;
  text-align: center;
}

.login-panel .system-title .decorate {
  margin-top: 2.4rem;
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #c0c0c0;
  position: relative;
}

.login-panel .system-title .decorate:before, .login-panel .system-title .decorate:after {
  background-color: #50c2c7;
  position: absolute;
  display: inline-block;
  content: "";
  width: 0.6rem;
  height: 0.6rem;
}

.login-panel .system-title .decorate:before {
  left: -1.6rem;
}

.login-panel .system-title .decorate:after {
  left: 1.6rem;
}

[id="btn_login"] {
  display: block;
  margin: 0 auto;
}

/** 2fa */
.totp{
  width: 80%;
  display: inline-block;
}

.fa-panel {
  margin: 1.6rem;
  padding: 1.6rem;
  width: 50.0rem;
  height: 55.0rem;
  border-radius: 0.4rem;
  background: #ffffff;
  border: 1px solid #c0c0c0;
  box-shadow: 0 2px 2px rgba(35, 35, 35, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}

.fa-panel .message-area {
  height: 3rem;
  display: flex;
  align-items: center;
  color: #48c78e;
  font-size: 0.9rem;
}

.fa-panel .message-area .message {
  font-size: 1.4rem;
  margin-bottom: 2rem;
}

.fa-panel .message-area .message.error {
  color: #BB393B;
}

.fa-panel .fa-form {
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #5a5a5a;
  letter-spacing: 2px;
}

.fa-panel .fa-form li + li {
  margin-top: 1.6rem;
}

.fa-panel .top {
  display: flex;
  align-items: center;
}

.fa-panel h1 {
  color: #5a5a5a;
  font-weight: bold;
  letter-spacing: 2px;
  font-size: 2rem;
}

.fa-panel .system-title {
  position: relative;
  margin-top: 0.8rem;
  text-align: center;
  margin-bottom: 1rem;
}

.fa-panel .system-title .decorate {
  margin-top: 2.4rem;
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #c0c0c0;
  position: relative;
}

footer.contents-button {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.fa-panel .system-title .decorate:before, .fa-panel .system-title .decorate:after {
  background-color: #50c2c7;
  position: absolute;
  display: inline-block;
  content: "";
  width: 0.6rem;
  height: 0.6rem;
}

.fa-panel .system-title .decorate:before {
  left: -1.6rem;
}

.fa-panel .system-title .decorate:after {
  left: 1.6rem;
}

.hidden {
  display: none !important;
}

#qrCode {
  margin-bottom: 1rem;
  width: 240px;
}

#verificationResult {
  margin-left: 0.5rem;
  display: none;
}

@media (max-width: 1070px)  {

  .fa-panel p, .fa-panel .message-area {
    font-size: 1.2rem !important;
}

  [type="button"], [type="submit"] {
    max-width: 100px !important;
    max-height: 40px !important;
  }
}