@-webkit-keyframes blink-1 {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@keyframes blink-1 {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
*,
*::after,
*::before {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
html {
  font-size: 62.5%;
  height: 100%;
  scroll-behavior: smooth;
}
body {
  background-color: #cddcea;
  box-sizing: border-box;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  height: 100%;
}
.btn {
  animation: GradientBackground 5s ease-out infinite;
  background: radial-gradient(
      circle farthest-corner at 0% 150%,
      rgb(255, 225, 125) 0%,
      rgb(255, 205, 105) 12%,
      rgb(250, 145, 55) 25%,
      rgb(235, 65, 65) 41%,
      transparent 95%
    ),
    linear-gradient(-15deg, rgb(35, 75, 215) -10%, rgb(195, 60, 190) 65%);
  background-size: 120% 120%;
  border: 0px;
  border-radius: 15px;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.35);
  color: #fff;
  float: left;
  font-family: "Lato", sans-serif;
  font-size: 1.8rem;
  margin: auto;
  min-height: 80px;
  min-width: 320px;
  outline: none;
  padding: 10px 30px;
  text-align: center;
  text-decoration: none;
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
@keyframes GradientBackground {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.btn:hover {
  box-shadow: 0 40px 45px -10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.btn-double {
  min-height: 60px;
  min-width: 150px;
}
.last {
  margin-top: 15px;
}
.blink-1 {
  animation: blink-1 3.5s infinite both;
  -webkit-animation: blink-1 3.5s infinite both;
}
.form__span {
  font-weight: bold;
}
.form__span--2 {
  font-size: 18px;
}
.form__span--copy {
  font-size: 10px;
  line-height: 12px;
}
.form__module--box {
  align-items: center;
  display: none;
  flex-direction: column;
  text-align: center;
}
.form__module--button {
  display: flex;
  width: 100%;
}
.form--input {
  background-color: rgb(255, 255, 255);
  border: 1.5px solid lightgreen;
  border-radius: 0.2rem;
  color: #333;
  display: block;
  font-size: 1.2rem;
  margin: 0 auto;
  margin-top: 10px;
  padding: 1.5rem 2rem;
  transition: all 0.3s;
  width: 100%;
}
.form--input:focus {
  border-color: #66afe9;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px rgba(102, 175, 233, 0.85);
  outline: 0;
}
.form-select {
  background-color: rgb(255, 255, 255);
  border: 1.5px solid lightgreen;
  border-radius: 0.2rem;
  color: #333;
  display: block;
  font-size: 1.5rem;
  margin: 10px 2px;
  padding: 1.5rem 1rem;
  transition: all 0.3s;
  width: 32%;
}
.form-select--box {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.background {
  align-items: center;
  animation: bgmove 30s;
  animation-delay: 4s;
  animation-iteration-count: infinite;
  background-image: url("../media/longbgshemalesds.jpg");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  height: 100vh;
  justify-content: center;
  -webkit-animation: bgmove 30s infinite;
}
@-webkit-keyframes bgmove {
  0% {
    background-position: top center;
  }
  50% {
    background-position: bottom center;
  }
  100% {
    background-position: top center;
  }
}
.content {
  background-image: url("../media/formbgshemalesds.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  color: #fff;
  font-weight: 700;
  padding: 110px 20px 30px 20px;
  width: 430px;
}
.content--1 {
  align-items: center;
  display: flex;
  font-size: 3rem;
  height: 15%;
  justify-content: center;
  line-height: 1.3;
  text-align: center;
}
.content--2 {
  height: 61%;
  padding: 2rem;
}
.content--2-box {
  margin: 2rem 0;
}
.content--2-img {
  cursor: pointer;
  filter: grayscale(100);
  margin: 0 1rem;
  max-width: 120px;
}
.content--2-img--active {
  filter: grayscale(0);
}
.content--3 {
  color: #333;
  display: flex;
  font-size: 16px;
  height: 10%;
  justify-content: space-around;
  padding: 0.5rem;
}
.content--3 * {
  align-items: center;
  border: 2px solid #b6b6b6;
  border-radius: 100%;
  display: flex;
  font-weight: 600;
  height: 20px;
  justify-content: center;
  width: 20px;
}
.content--3-active {
  background-color: salmon;
  border: 2px solid orange;
  color: #000;
}
.required {
  background-color: red;
  color: #fff;
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 1.2;
  margin: 10px;
}
#termsc {
  margin-top: 5px;
}
@media only screen and (min-width: 1500px) {
  html {
    font-size: 72.5%;
  }
}
@media only screen and (max-width: 1200px) {
  .content {
    margin-top: -250px;
  }
}
@media only screen and (max-width: 700px) {
  .content {
    margin-top: -150px;
    width: 90%;
  }
  .content--1 {
    font-size: 2.5rem;
  }
  .content--2-img {
    max-width: 100px;
  }
  .content--3 {
    display: none;
  }
  .btn {
    min-height: 60px;
    min-width: 250px;
  }
  .btn-double {
    min-width: 100px;
  }
}
@media only screen and (max-width: 350px) {
  .content {
    position: relative;
    top: 95px;
  }
  .content--1 {
    height: 20%;
  }
  .content--2-img {
    max-width: 80px;
  }
}
