@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&display=swap");
@font-face {
  font-family: "Tactic";
  src: url("fonts/TacticSans-Blk.ttf");
}
body {
  padding: 0;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
  height: 100vh;
  background: #111;
  background-image: url("img/kajabi_bg.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
  font-family: "Poppins", sans-serif;
}
body .main {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  row-gap: 100px;
  justify-content: center;
  align-items: center;
}
body .main .main-upper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
body .main .main-upper img {
  width: 800px;
}
body .main .main-upper h1 {
  font-weight: normal;
  font-family: "Tactic", sans-serif;
  text-transform: uppercase;
  letter-spacing: 10px;
  font-size: 32px;
}
body .main .main-lower {
  display: flex;
  flex-direction: column;
  align-items: center;
}
body .main .main-lower p {
  color: #CCC;
  font-size: 14px;
}
body .main .main-lower form {
  padding: 0;
  margin: 0;
  display: flex;
  -moz-column-gap: 0;
       column-gap: 0;
}
body .main .main-lower form input {
  padding: 20px;
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  border: none;
  outline: none;
  border-radius: 8px 0px 0px 8px;
  color: #111;
  font-weight: 600;
  width: 350px;
}
body .main .main-lower form input::-moz-placeholder {
  color: #aaa;
  font-weight: 400;
}
body .main .main-lower form input::placeholder {
  color: #aaa;
  font-weight: 400;
}
body .main .main-lower form .submit-btn {
  width: auto;
  background: #327CF7;
  border: none;
  outline: none;
  border-radius: 0px 8px 8px 0px;
  color: white;
  font-weight: 700;
  padding: 20px 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s;
}
body .main .main-lower form .submit-btn:hover {
  cursor: pointer;
  background: #2a68cc;
}
body .main .main-lower .social-media {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
body .main .main-lower .social-media button {
  width: 50px;
  height: 50px;
  border: none;
  outline: none;
  border-radius: 8px;
  background: #FEE34A;
  font-size: 24px;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5);
  transition: all 0.3s;
}
body .main .main-lower .social-media button:hover {
  cursor: pointer;
  background: #d1bb3e;
}

@media only screen and (max-width: 450px) {
  body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    width: 100%;
  }
  body .main {
    padding: 0 20px;
    margin: 0;
    box-sizing: border-box;
    row-gap: 50px;
  }
  body .main .main-upper img {
    width: 100%;
  }
  body .main .main-upper h1 {
    font-size: 20px;
  }
  body .main .main-lower {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-align: center;
  }
  body .main .main-lower p {
    font-size: 12px;
  }
  body .main .main-lower form {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    width: 100%;
    display: flex;
    row-gap: 10px;
    flex-direction: column;
  }
  body .main .main-lower form input {
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    border-radius: 5px;
    font-size: 16px;
  }
  body .main .main-lower form .submit-btn {
    border-radius: 5px;
    padding: 10px;
  }
  body .main .main-lower .social-media {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  body .main .main-lower .social-media button {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}/*# sourceMappingURL=style.css.map */