@-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 {
  background-color: #0078d0;
  border: 0;
  border-radius: 56px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  outline: 0;
  padding: 14px 18px;
  position: relative;
  text-align: center;
  text-decoration: none;
  touch-action: manipulation;
  transition: all 0.3s;
  user-select: none;
  webkit-user-select: none;
  width: 100%;
}
.btn:before {
  background-color: initial;
  background-image: linear-gradient(#fff 0, rgba(255, 255, 255, 0) 100%);
  border-radius: 125px;
  content: "";
  height: 50%;
  left: 4%;
  opacity: 0.5;
  position: absolute;
  top: 0;
  transition: all 0.3s;
  width: 92%;
}
.btn:hover {
  box-shadow: rgba(255, 255, 255, 0.2) 0 3px 15px inset,
    rgba(0, 0, 0, 0.1) 0 3px 5px, rgba(0, 0, 0, 0.1) 0 10px 13px;
  transform: scale(1.05);
}
.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;
  background-image: url("../media/nakedbgds.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  height: 100vh;
  justify-content: center;
}
.content {
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 10px;
  color: #000000;
  padding: 20px 0px 10px 0px;
  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 2rem;
}
.content--3 * {
  align-items: center;
  border: 2px solid #ccc;
  border-radius: 100%;
  display: flex;
  font-weight: 600;
  height: 40px;
  justify-content: center;
  width: 40px;
}
.content--3-active {
  background-color: lightskyblue;
  border: 2px solid skyblue;
  color: #000;
}
.content--4 {
  align-items: center;
  color: #333;
  display: flex;
  font-size: 1.2rem;
  height: 20%;
  letter-spacing: -1px;
  line-height: 1.4;
  padding: 0.5rem;
}
.required {
  color: red;
  display: block;
  font-size: 14px;
  line-height: 1.2;
  margin-top: 5px;
  text-align: center;
}
#termsc {
  margin-top: 5px;
}
@media only screen and (min-width: 1500px) {
  html {
    font-size: 72.5%;
  }
}
@media only screen and (max-width: 1200px) {
  .background {
    background-position: -220px;
  }
  .content {
    background-color: rgba(255, 255, 255, 0.75);
    margin-top: -350px;
  }
}
@media only screen and (max-width: 700px) {
  .background {
    background-image: url("../media/nakedbgsmds.jpg");
    background-position: top center;
  }
  .content {
    background-color: rgba(255, 255, 255, 0.7);
    margin-top: -120px;
    width: 90%;
  }
  .content--1 {
    font-size: 2.5rem;
  }
  .content--2-img {
    max-width: 100px;
  }
  .content--3 {
    display: none;
  }
}
@media only screen and (max-width: 350px) {
  .content {
    position: relative;
    top: 95px;
  }
  .content--1 {
    height: 20%;
  }
  .content--2-img {
    max-width: 80px;
  }
}
