.s-auth {
  height: 100vh;
  display: flex !important;
  align-items: center !important;
  margin: 0;
}
.s-auth .container {
  display: flex !important;
  justify-content: center !important;
}
.s-auth .b-auth {
  max-width: 335px;
  width: 100%;
  margin-bottom: 20vh;
  position: relative;
}
.s-auth .bottom-container {
  position: absolute;
  bottom: 52px;
  width: 100%;
  text-align: center;
}
@media (max-width: 767px) {
  .s-auth .bottom-container {
    bottom: 10px;
  }
}
.s-auth .btn-forget, .s-auth .btn-qr-auth {
  font-size: 13px;
  line-height: 16px;
  text-align: center;
  letter-spacing: -0.5px;
  text-align: center;
  color: #B8B8BB;
  background: none;
  opacity: 0;
}
.s-auth .btn-forget.anim, .s-auth .btn-qr-auth.anim {
  animation-name: backAnim;
  animation-duration: 1s;
  animation-delay: 0s;
  animation-fill-mode: forwards;
}
.s-auth .logo {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 45%;
}
.s-auth .logo.anim {
  animation-name: logoAnim;
  animation-duration: 1s;
  animation-delay: 0s;
  animation-fill-mode: forwards;
}
.s-auth form {
  margin-top: 66px;
  opacity: 0;
}
.s-auth form.anim {
  animation-name: backAnim;
  animation-duration: 1s;
  animation-delay: 0s;
  animation-fill-mode: forwards;
}
.s-auth .btn {
  margin-top: 15px;
  width: 100%;
}
@keyframes backAnim {
  0% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes logoAnim {
  0% {
    width: 100%;
    height: 100%;
    top: 45%;
  }
  70% {
    width: 100%;
    height: 100%;
    top: 45%;
  }
  100% {
    width: 119px;
    height: 30px;
    top: 0%;
  }
}
.modal-qr-auth .timer {
  display: inline-block;
  margin-left: 30px;
  font-weight: 500;
  font-size: 16px;
}
