logodiv {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 600px;
  border: 1px solid black;
}

logobrand {
  width: 50%;
}

.underline:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 8px;
  border-radius: 5px;
  background: #32bdec;
  z-index: -1;
}

.hidden-step {
  display: none;
}

.form-step {
  transition: transform 0.5s ease-in-out;
}

.slide-in-right {
  animation: slideRight 0.5s forwards;
}

.slide-in-left {
  animation: slideLeft 0.5s forwards;
}

@keyframes slideRight {
  from {
    transform: translateX(100%);
    opacity: 0.2;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideLeft {
  from {
    transform: translateX(-100%);
    opacity: 0.2;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.alert-primary {
  background-color: #24285b !important;
  color: #ffffff !important;
  border: none;
}

