.body-container--auth {
  overflow-y: auto;
}

.auth-title-container--login {
  padding: 0;
  padding-bottom: 80px;
}

.auth-step-1--login {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 100px);
}

.login-cards-container {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 40px;
  align-self: stretch;
  flex-wrap: wrap;
}

.login-card {
  position: relative;
  display: flex;
  width: 380px;
  height: 145px;
  padding: 32px 24px;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  border: 2px solid #DEEAF9;
  cursor: pointer;
}

.login-card__arc {
  position: absolute;
  left: 0;
}

.login-card__text {
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  color: #006174;
  margin: 0;
  margin-left: 12px;
  text-align: left;;
}

.loading-container {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  z-index: 1003;
  overflow: hidden; 
}

.loading-rectangle {
  width: 100vw;
  height: 100vh;
  background: #006174;
  z-index: 1004;
  overflow: hidden;
}

.loading-container--visible {
  display: block;
}

.loading-container--visible > .loading-rectangle {
  animation: morphingRectangle 3s forwards;
}

.loading-arc {
  height: 105vh;
  margin-top: -13px;
}

@keyframes morphingRectangle {
  from {
    margin-left: 0;
  }
  to {
    margin-left: 100%;
  }
}

@media screen and (max-width: 1200px) {

}

@media screen and (max-width: 900px) {
  .auth-title-container--login {
    padding: 32px 16px;
    padding-top: 0;
  }

  .login-cards-container {
    flex-direction: column;
    padding: 0 16px;
    gap: 24px;
  }

  .login-card {
    width: 100%;;
  }
}