*,
*::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: #111;
  border: none;
  border-radius: 40px;
  color: rgb(255, 255, 255);
  cursor: pointer;
  font-size: 1.8rem;
  margin: auto;
  margin-top: 20px;
  outline: none;
  padding: 0.8em 1.8em;
  position: relative;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
  z-index: 0;
}
.btn:before {
  animation: glowing-button-85 20s linear infinite;
  background: linear-gradient(
    45deg,
    #ff0000,
    #ff7300,
    #fffb00,
    #48ff00,
    #00ffd5,
    #002bff,
    #7a00ff,
    #ff00c8,
    #ff0000
  );
  background-size: 400%;
  border-radius: 10px;
  content: "";
  filter: blur(5px);
  height: calc(100% + 4px);
  left: -2px;
  position: absolute;
  top: -2px;
  transition: opacity 0.3s ease-in-out;
  -webkit-filter: blur(5px);
  width: calc(100% + 4px);
  z-index: -1;
}
@keyframes glowing-button-85 {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}
.btn:after {
  background: #222;
  border-radius: 10px;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
.btn-double {
  margin: 10px;
  min-height: 60px;
  min-width: 150px;
}
.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 {
  margin: auto;
  text-align: center;
}
.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-color: #000;
  background-image: url("../media/darkgradientbgds.jpg");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  min-height: 100%;
}
.content {
  color: #fff;
  font-weight: 700;
  height: 400px;
  padding-top: 80px;
  text-align: center;
  text-shadow: #000 1px 0 10px;
  width: 600px;
}
.content--1 {
  align-items: center;
  display: flex;
  font-size: 3rem;
  height: 15%;
  justify-content: center;
  line-height: 1.3;
  margin-bottom: 20px;
  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);
}
.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: 700px) {
  .content {
    padding-top: 0px;
    width: 90%;
  }
  .content--1 {
    font-size: 2.5rem;
  }
  .content--2-img {
    max-width: 100px;
  }
  .btn {
    min-height: 60px;
    min-width: 250px;
  }
  .btn-double {
    min-width: 100px;
  }
}
@media only screen and (max-width: 350px) {
  .content {
    margin-top: -250px;
    position: relative;
    top: 95px;
  }
  .content--1 {
    height: 20%;
  }
  .content--2-img {
    max-width: 80px;
  }
  .btn {
    margin: 5px;
  }
}
