@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;family=Raleway:ital,wght@0,100..900;1,100..900&amp;family=Urbanist:ital,wght@0,100..900;1,100..900&amp;display=swap");

body {
  width: 100%;
  min-height: 100vh;
  font-family: "Urbanist";
  position: relative;
  background-image: url(../../../images/layers.png);
  background-size: cover;
  background-position: center center;
  background-color: rgb(244, 249, 253);
}
.comingSoonMain {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 40px 60px;
  position: relative;
  min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-bottom: 0 !important;
}

a {
  text-decoration: none !important;
}
header {
  display: flex;
  width: 100%;
  height: auto;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.logo {
  font-size: 45px;
  font-family: "Poppins";
  color: rgb(9, 20, 28);
  text-transform: uppercase;
  font-weight: 900;
  line-height: 1;
}
.logo img {
  width: 20px;
  margin-right: 10px;
  vertical-align: top;
}
.logo span {
  color: var(--primary-color);
}
.icons {
  display: flex;
  gap: 6px;
  align-items: center;
  flex: 1;
  justify-content: end;
}
.icons a i {
  width: 45px;
  height: 45px;
  display: grid;
  place-content: center;
  background-color: transparent;
  font-size: 18px;
  color: rgb(9, 20, 28);
  border: solid 1px rgb(9, 20, 28);
  border-radius: 50%;
  transition: var(--transitions);
}
.icons a i:hover {
  background-color: rgb(255, 255, 255);
  color: rgb(21, 21, 21);
}
.mainHeading {
  font-size: 53px;
  font-weight: bold;
  color: rgb(9, 20, 28);
  line-height: 1;
  text-align: left;
}
.soonDesc {
  font-size: 20px;
  color: rgb(117, 117, 117);
  font-weight: 400;
}
.mainHeading2 {
  font-size: 45px;
  font-weight: 900;
  color: rgb(9, 20, 28);
}
.mainHeading2 span {
  font-weight: 300;
  color: rgb(9 20 28);
}

footer {
  background-color: antiquewhite;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.copyright {
  font-size: 15px;
  color: rgb(9, 20, 28);
  font-weight: bold;
}
.payment {
  padding: 10px 32px;
  border-radius: 35px;
}
.highlight {
  color: rgb(9, 20, 28);
  font-weight: bold;
  font-size: 18px;
  background-color: var(--primary-color);
  padding: 12px 24px;
  width: max-content;
  border-radius: 35px;
}
.checkList {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
  justify-content: space-between;
}
.checkList li {
  width: 50%;
  font-size: 20px;
  margin-bottom: 25px;
  font-weight: 500;
}
.checkList li i {
  margin-right: 7px;
}

form {
  overflow: hidden;
  width: 100%;
  height: auto;
  background-color: rgb(255, 255, 255);
  padding: 55px 80px;
  border-radius: 30px;
}

.input-field {
  width: 100%;
  padding-bottom: 40px;
}
.input-field label,
.check-field label {
  font-size: 18px;
  color: var(--field-text-color);
  font-weight: bold;
  display: block;
  margin-bottom: 20px;
}
.input-field label i,
.check-field label i {
  margin-right: 10px;
}
.input-field label span,
.check-field label span {
  color: rgb(252, 89, 18);
}
.input-field input {
  font-size: 17px;
  color: var(--field-place-color);
  background-color: transparent;
  border: 0;
  border-bottom: solid 3px rgb(250, 228, 202);
  width: 100%;
  position: relative;
  transition: 0.4s ease;
}
.input-field input + span {
  display: block;
  position: relative;
}
.input-field input:focus {
  outline: none;
  transition: 0.4s ease;
}
.input-field input + span::after {
  content: "";
  background-color: var(--primary-color);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  transition: 0.4s ease;
}
.input-field input:focus + span::after {
  width: 100%;
}
.input-field textarea {
  height: 40px;
}

.submit {
  width: 188px;
  height: 60px;
  margin-top: 15px;
}
.submit button {
  border-radius: 10px;
  background-color: rgb(0, 0, 0);
  width: 100%;
  height: 100%;
  border: solid 2px transparent;
  transition: 0.4s ease;
  font-size: 15px;
  color: rgb(255, 255, 255);
  font-weight: bold;
  position: relative;
}
.submit button span {
  margin-left: 10px;
  display: inline-block;
  transform: translateX(-200%);
  opacity: 0;
  transition: 0.4s ease;
  position: absolute;
}
.submit button:hover span {
  opacity: 1;
  transform: translateX(0);
}
