*, ::after, ::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bs-link-color: #0d6efd;
}

a, [a] {
  text-decoration: none;
  color: var(--bs-link-color);
  cursor: pointer;
}

html,
body {
  height: 100%;
}

hr {
  border: 0 none;
  border-top: 1px solid #bdbdbd;
  margin: 20px 0;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #effaff;
  margin: 0;
  padding: 0;
  font-size: 15px;
}

main {
  width: 378px;
  min-height: 300px;
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
}

main .logo img {
  width: 40px;
  height: 40px;
}

main h3 {
  margin-top: 1rem;
}

.vform {
  margin-top: 2rem;
}

.vform dl {
  text-align: left;
  margin-bottom: 15px;
}

.vform dl dt {
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 5px;
}

.vform dl dd input {
  width: 100%;
  height: 40px;
  padding: 0 12px;
  border: 0 none;
  border-radius: 6px;
  background-color: #eff2f6;
  outline-color: #0288D1;
}

.btn {
  width: 100%;
  height: 45px;
  border-radius: 10px;
  border: none;
  background-color: #03A9F4;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  margin-top: 10px;
}

.btn:hover {
  background-color: #0288D1;
}

.btn.reg {
  background-color: #4CAF50;
}

.btn.reg:hover {
  background-color: #388E3C;
}

.ot {
  margin-top: 20px;
  color: #757575;
}

.loadding {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.loadding::after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 4px solid #333;
  border-top-color: transparent;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.alertCopied {
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  position: fixed;
  margin: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 30px;
  background: rgba(209, 0, 0, 0.8);
  color: #fff;
  font-weight: bold;
  padding: 7px 20px;
  text-align: center;
  border-radius: 50px;
  z-index: 99999999999;
  -webkit-animation: success .3s forwards;
          animation: success .3s forwards;
}

.alertCopied.success {
  background: rgba(0, 128, 0, 0.8);
}

@-webkit-keyframes success {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) scale(0.8);
            transform: translateX(-50%) translateY(-50%) scale(0.8);
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) scale(1);
            transform: translateX(-50%) translateY(-50%) scale(1);
  }
}

@keyframes success {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) scale(0.8);
            transform: translateX(-50%) translateY(-50%) scale(0.8);
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) scale(1);
            transform: translateX(-50%) translateY(-50%) scale(1);
  }
}

.qrcode_warp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 30px 0;
}

.qrcode_box {
  width: 200px;
  height: 200px;
  background-color: #e7e7e7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.qrcode_box img {
  width: 100%;
  height: 100%;
}

.log_user {
  cursor: pointer;
  width: 239px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #ebebeb;
  background-color: #fff;
  text-align: left;
  padding: 6px 15px;
  color: #000;
  font-size: 12px;
  margin-bottom: 10px;
}

.log_user img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.log_user .txt2 {
  font-size: 12px;
  color: #959595;
  margin-top: 4px;
}
/*# sourceMappingURL=login.css.map */