body {
  /* background: linear-gradient(135deg, #c9a0dc, #7a4eb2); */
  background: linear-gradient(135deg, #8fd3f4, #a1eecb);
  /* background: linear-gradient(135deg, rgba(143, 211, 244, 0.8), rgba(161, 238, 203, 0.8)); */

  font-family: "Asap", sans-serif;
}

.WAVEForm {
  overflow: hidden;
  background-color: white;
  padding: 40px 30px 30px 30px;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: -webkit-transform 300ms, box-shadow 300ms;
  -moz-transition: -moz-transform 300ms, box-shadow 300ms;
  transition: transform 300ms, box-shadow 300ms;
  box-shadow: 5px 10px 10px rgba(2, 128, 144, 0.2);
}
.WAVEForm::before, .WAVEForm::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-top-left-radius: 40%;
  border-top-right-radius: 45%;
  border-bottom-left-radius: 35%;
  border-bottom-right-radius: 40%;
  z-index: -1;
}
.WAVEForm::before {
  left: 40%;
  bottom: -130%;
  background-color: rgba(69, 105, 144, 0.15);
  -webkit-animation: wawes 6s infinite linear;
  -moz-animation: wawes 6s infinite linear;
  animation: wawes 6s infinite linear;
}
.WAVEForm::after {
  left: 35%;
  bottom: -125%;
  background-color: rgba(2, 128, 144, 0.2);
  -webkit-animation: wawes 7s infinite;
  -moz-animation: wawes 7s infinite;
  animation: wawes 7s infinite;
}
.WAVEForm > input {
  font-family: "Asap", sans-serif;
  display: block;
  border-radius: 5px;
  font-size: 16px;
  background: white;
  width: 100%;
  border: 1px solid #dce3e9;
  padding: 10px 10px;
  margin: 15px -10px;
}
.WAVEForm > button {
  font-family: "Asap", sans-serif;
  cursor: pointer;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  width: 30%;
  border: 0;
  padding: 10px 0;
  margin-top: 10px;
  margin-left: -5px;
  border-radius: 5px;
  background-color: #8fd3f4;
  -webkit-transition: background-color 300ms;
  -moz-transition: background-color 300ms;
  transition: background-color 300ms;
}
.WAVEForm > button:hover {
  background-color: #53856e;
}

@-webkit-keyframes wawes {
  from {
    -webkit-transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@-moz-keyframes wawes {
  from {
    -moz-transform: rotate(0);
  }
  to {
    -moz-transform: rotate(360deg);
  }
}
@keyframes wawes {
  from {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  /* position: absolute; */
  right: 10px;
  bottom: 10px;
  font-size: 16px;
}


.auth-links {
  margin-top: 1rem;
  text-align: center;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.26);
  padding: 20px 30px 20px 30px;
  border-radius: 10px;
  position: absolute;
  top: 75%;
  left: 50%;
  width: 400px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: -webkit-transform 300ms, box-shadow 300ms;
  -moz-transition: -moz-transform 300ms, box-shadow 300ms;
  transition: transform 300ms, box-shadow 300ms;
  box-shadow: 5px 10px 10px rgba(2, 128, 144, 0.2);
}

.auth-links a {
  color: #4CAF50;
  text-decoration: none;
  margin: 0 0.5rem;
}

.auth-links a:hover {
  /* text-decoration: underline; */
  color: #52836c;
}

.headiing {
  margin-top: 1rem;
  text-align: center;
  color: #00000052;
  /* overflow: hidden; */
  /* background-color: rgba(255, 255, 255, 0); */
  padding: 20px 30px 20px 30px;
  border-radius: 10px;
  position: absolute;
  top: 25%;
  left: 50%;
  width: 400px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: -webkit-transform 300ms, box-shadow 300ms;
  -moz-transition: -moz-transform 300ms, box-shadow 300ms;
  transition: transform 300ms, box-shadow 300ms;
  /* box-shadow: 5px 10px 10px rgba(2, 128, 144, 0.2); */
}

#result {
  color: #9d4b2a; /* Use any hex, rgba, or named color */
}

label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #3333338c; /* dark grey */
  margin-bottom: 6px;
}