body, html {
  height: 100%;
}

.loader-container {
  display: flex;
  flex-direction: column;
  height:100%;
  align-items: center;
  justify-content: center;
}

.loader-item {
  max-height:100px;
  max-width:300px;
}

.loader-text{
  color: #2e3b4c;
  white-space: nowrap;
  text-align: center;
  position: relative;
  font-weight: bold;
}


.img-logo{
  max-height: 131px !important;
  margin-top: 25px;
}

.background-login{
  background-color: #0063af;
  color: white;
}

.card-load{
  border-radius: 8px;
  background-color: white;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.24), 0 0 2px 0 rgba(0, 0, 0, 0.12);
  width: 450px;
  min-width: 320px;
  padding: 21px 64px 34px;
  box-sizing: border-box;
  text-align: center;
  color: #0063af;
}

@keyframes bouncing-loader {
  from {
      opacity: 1;
      transform: translateY(0);
  }
  to {
      opacity: 0.1;
      transform: translateY(-1rem);
  }
}

.bouncing-loader {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.bouncing-loader > div {
  width: 1rem;
  height: 1rem;
  margin: 3rem 0.2rem;
  background: #0063af;
  border-radius: 50%;
  animation: bouncing-loader 0.6s infinite alternate;
}

.bouncing-loader > div:nth-child(2) {
  animation-delay: 0.2s;
}

.bouncing-loader > div:nth-child(3) {
  animation-delay: 0.4s;
}