*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  height: 100%;
}
body {
  height: 100%;
  box-sizing: border-box;
  font-family: "Anton", sans-serif;
  line-height: 1.4;
  font-weight: 400;
  color: #000;
  background-image: url("../media/card-bg-shemales.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.privacy {
  color: #000;
  font-family: "Lato", sans-serif;
  font-size: 0.9rem;
  line-height: 1rem;
  margin-top: 5px;
}
.required {
  font-family: "Lato", sans-serif;
  font-size: 18px;
  margin: -0.8em 0 0.5em;
  color: red;
  display: block;
}
.input {
  font-size: 2.5rem;
  font-weight: 300;
  font-family: "Dosis", sans-serif;
  width: 100%;
  border: 1px solid gray;
  margin: 0 0 0.5em 0;
  outline: none;
  color: #000;
  background-color: #fff;
  height: 2em;
  padding: 0 0.7em 0;
  border-radius: 0.3em;
}
.form-select {
  font-size: 2.5rem;
  font-weight: 300;
  font-family: "Dosis", sans-serif;
  width: 32%;
  border: 1px solid gray;
  margin: 0 0 0.5em 0;
  outline: none;
  color: #000;
  background-color: #fff;
  height: 2em;
  padding: 0 0.7em 0;
  border-radius: 0.3em;
}
.form-select--box {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.container {
  display: flex;
  justify-content: center;
}
.container-p {
  font-size: 2.5rem;
  padding: 1rem 2rem;
}
.container__box-2 {
  border-radius: 20px;
  margin-top: 20px;
  position: absolute;
  height: 20rem;
  width: 50rem;
}
.container__box-2--form {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 20px -8px rgba(0, 0, 0, 0.7);
  border-radius: 15px;
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 27%;
}
.container__box-2--form-box {
  width: 95%;
  text-align: center;
}
.container__box-2--form-box-1 {
  padding: 0 1rem;
  transform: translateY(1rem);
}
.blackdiv {
  background-color: aquamarine;
  border-radius: 15px 15px 0px 0px;
  font-size: 24px;
  height: 70px;
  line-height: 26px;
  padding: 2%;
  width: 100%;
}
.blackdiv2 {
  background-color: aquamarine;
  border-radius: 0px 0px 15px 15px;
  height: 40px;
  line-height: 16px;
  margin-top: 20px;
  font-size: 14px;
  padding-top: 5px;
  width: 100%;
}
.imgoptions {
  border: 5px solid transparent;
  cursor: pointer;
  margin: 2%;
  width: 25%;
}
.imgoptions:hover {
  border: 5px solid aquamarine;
  border-radius: 5px;
}
button {
  border-radius: 4px;
  background-color: salmon;
  border: none;
  color: #fff;
  text-align: center;
  font-size: 28px;
  padding: 10px;
  width: 150px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 2%;
  box-shadow: 0 10px 20px -8px rgba(0, 0, 0, 0.7);
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}
button:after {
  content: "»";
  position: absolute;
  opacity: 0;
  top: 10px;
  right: -30px;
  transition: 0.5s;
}
button:hover {
  padding-right: 24px;
  padding-left: 8px;
}
button:hover:after {
  opacity: 1;
  right: 10px;
}
.btnnext {
  width: 200px;
}
@media only screen and (min-width: 1500px) {
  html {
    font-size: 72.5%;
  }
}
@media only screen and (max-width: 750px) {
  .container__box-2 {
    width: 95vw;
  }
  .container__box-2--form {
    margin-top: 10%;
  }
  .form-select {
    font-size: 2rem;
  }
}
