body {
  background-color: #fff;
  overflow: hidden;
}

body,
html {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

text {
  -moz-user-select: -moz-none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#hit {
  cursor: pointer;
}

body {
  font-family: "Helvetica Neue", "Open sans", sans-serif;
  background-image: linear-gradient(45deg, #f7a5c7, #a958ff);
  color: white;
}

.form-group {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: #fff 1px solid;
  padding: 20px;
  border-radius: 10px;
  width: clamp(250px, 60%, 400px);
  /* background-color: lavender;
  color: rgb(255, 255, 255);
  background-image: -webkit-linear-gradient(top left, #a802e0, #f7676a); */
  /* background-color: #000000;
  background-image: linear-gradient(45deg, #f3ec78, #af4261);
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent; */
}

.container {
  background-color: white;
}

form input {
  display: block;
  margin-bottom: 10px;
  font-size: 1.3em;
  padding: 10px;
  color: #fff;
  background-color: transparent;
  border: 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  font-weight: 300;
  outline: none;
  font-weight: 100;
  letter-spacing: 4px;
  margin-left: 10px;
   max-width: 350px;
}
input .input-field {
  border: 1px solid black;
}
form input:hover,
form input:focus {
  border-bottom: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 5%;
}

form input::placeholder {
  color: #d3d1d3;
  font-weight: 100;
  letter-spacing: 4px;
  margin-left: 10px;
}

input[type="submit"] {
  margin: 40px auto;
  border: 1px solid white;
  display: bl;
  width: 100px;
}

input[type="submit"]:hover {
  border: 1px solid white;
  display: bl;
  width: 100px;
}
.form-group p {
  margin-top: 10px;
}
.form-group p a {
  color: rgb(225, 225, 225);
}

.heartSVG {
  margin-top: -80px;
}

@keyframes heartfade {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.heart {
  z-index: 999;
  animation: heartfade 6s linear;
  position: absolute;
}
.heart:before,
.heart:after {
  content: "";
  background-color: #fc2a62;
  position: absolute;
  height: 30px;
  width: 45px;
  border-radius: 15px 0px 0px 15px;
}

.heart:before {
  transform: rotate(45deg);
}

.heart:after {
  left: 10.5px;
  transform: rotate(135deg);
}
