body {
  background-color: #f8f9fa;
}
@media (min-width: 992px) {
  body {
    padding: 20px;
  }
}

.form-header {
  position: relative;
  padding: 15px 24px 5px;
  margin-bottom: 40px;
  background-color: rgb(11, 17, 40);
}
.form-header > div {
  position: relative;
  z-index: 1;
}
.form-header:after {
  content: "";
  position: absolute;
  left: -20px;
  right: -20px;
  top: 100%;
  height: 50px;
  background-color: rgb(11, 17, 40);
  border-radius: 50%;
  transform: translateY(-50%);
}

.form-wrapper {
  max-width: 38.75rem;
  background-color: #fff;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
@media (min-width: 992px) {
  .form-wrapper {
    border-radius: var(--bs-border-radius);
  }
}

@keyframes welcome {
  0%, 50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -50px, 0);
    transform: translate3d(0, -50px, 0);
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.logos {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  -webkit-animation-name: welcome;
  animation-name: welcome;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-delay: 2s;
}
.logos > div {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}

#logo1 svg {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-delay: 1s;
}

#logo2 svg {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.list-info li {
  position: relative;
  padding-left: 45px;
}
.list-info strong {
  position: absolute;
  left: 0;
  top: 0;
}
