.loading-auth {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.loading-auth .center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: scale(0.6);
  -ms-transform: scale(0.6);
  transform: scale(0.6);
  width: 200px;
  height: 200px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}

.loading-auth .logo {
  margin-top: 60px;
  width: 100px;
  height: 80px;
  background-image: url('./bluelogo.png');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.loading-auth .text {
  margin-top: 24px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  color: #1961ac;
  font-size: 26px;
  height: 1.6em;
  line-height: 1.6;
  white-space: nowrap;
}

.loading-auth .in {
  width: 55%;
  height: 55%;
  -webkit-animation: rotate 1s linear infinite;
  animation: rotate 1s linear infinite;
}

.loading-auth .middle {
  width: 80%;
  height: 80%;
  -webkit-animation: rotateNeg 2s linear infinite;
  animation: rotateNeg 2s linear infinite;
}

.loading-auth .out {
  width: 90%;
  height: 90%;
  -webkit-animation: rotate 2s linear infinite;
  animation: rotate 2s linear infinite;
}

.loading-auth .center .in,
.loading-auth .center .middle,
.loading-auth .center .out {
  border-left-color: transparent;
  border-right-color: transparent;
}

.loading-auth .half-border {
  position: absolute;
  border-radius: 50%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border: 4px solid #1961ac;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@-webkit-keyframes rotateNeg {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(-1turn);
    transform: rotate(-1turn);
  }
}

@keyframes rotateNeg {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(-1turn);
    transform: rotate(-1turn);
  }
}
