.bg {
  height: 100%;
  width: 100%;
  background: linear-gradient(-45deg, #cce7e8, #44bcd8, #042f66);
  background-size: 400% 400%;
  -webkit-animation: gradient 15s ease infinite;
          animation: gradient 15s ease infinite;
  position: absolute;
  left: 0px;
  top: 0px;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
  z-index: 1;
}

.signupWrapper {
  background: #fff;
  position: relative;
  z-index: 2;
  border-radius: 3px;
}

.signupWrapper h1 {
  font-size: 1.5rem;
  font-weight: bold;
}

.signupWrapper h1::after {
  display: none;
}

.signupWrapper .form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #333;
}

.signupWrapper ul.sighup_highlights {
  padding: 0px;
}

.signupWrapper ul.sighup_highlights li {
  margin-bottom: 1rem;
  list-style-type: none;
  font-size: 1.3rem;
}

@-webkit-keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

