body {
  width: 100vw;
  height: fit-content;
  margin: 0;
  padding: 0px;
  font-family: 'Lexend', sans-serif;
  background-color: rgb(255, 255, 255);
}

.form {
  text-align: center;
  justify-content: center;
  background-color: rgb(255, 255, 255);
  box-shadow: 2px 4px 6px grey;
  height: fit-content;
  width: 400px;
  margin: 0 auto;
  position: relative;
  border-radius: 10px;
  font-family: 'Lexend', sans-serif;
  padding: 32px;
}

.form input {
  justify-content: left;
  background-color: white;
  padding: 8px;
  border-radius: 5px;
  border-color: rgb(0, 0, 0);
  width: 80%;
  outline: none;
  font-family: 'Lexend', sans-serif;
  border-style: solid;
}
.form input:hover {
  color: #00cba9;
  border-color: #00cba9;
}
.form button {
  background-color: #00cba9;
  padding: 8px;
  border-radius: 5px;
  color: white;
  border: none;
  filter: drop-shadow(10px 11px 14px #f0f0f0);
}

.form button:hover {
  background-color: #00cba998;
}
.thankYou {
  text-align: center;
  justify-content: center;
  background-color: rgb(255, 255, 255);
  box-shadow: 2px 4px 6px grey;
  height: fit-content;
  width: 400px;
  margin: 0 auto;
  position: relative;
  border-radius: 10px;
  font-family: 'Lexend', sans-serif;
  padding: 32px;
  display: none;
}

h1 {
  text-align: center;
  justify-content: center;
}

svg {
  position: absolute;
  bottom: 0;
  z-index: -1;
}
img {
  position: relative;
  height: 40vh;
}
.submit {
  color: white;
  border: none;
  padding: 8px;
  font-size: 1rem;
  border-radius: 5px;
}

#loading {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 30vh;
  justify-content: center;
  border: 2px solid #f3f3f3; /* Light grey */
  border-top: 2px solid #FC70AF; /* Blue */
  border-radius: 50%;
  border-width: 1px;
  width: 50px;
  height: 50px;
  animation: spin 2s linear infinite;
}

@media only screen and (max-width: 600px) {
  .form {
    width: 70%;
    top: 10vh;
  }
  .thankYou {
    width: 70%;
    top: 10vh;
  }
  img {
    height: 25vh;
  }
}

