@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  padding: 0;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 34px;
  color: #fff;
  hyphens: none;
  word-break: normal;
  overflow-wrap: normal;
}
.wrapper {
  background-color: #122231;
  background-image: url('/bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  border-radius: 0;
  min-height: 100%;
  box-sizing: inherit;
  padding: 50px 30px;
  margin: 0 auto;
}
.container {
  max-width: 952px;
  margin: 0 auto;
  text-align: center;
}
.container h1 {
  font-size: 24px;
  line-height: 40px;
  font-style: normal;
  font-weight: 500;
  color: #fff;
  padding: 0;
  margin: 0 0 20px 0;
}
.logo img {
  width: 200px;
  height: auto;
  display: block;
  margin: 0 auto 30px auto;
}
.features {
  border: 4px dashed rgba(121, 119, 119, 0.25);
  border-radius: 20px;
  padding: 20px;
  margin: 30px -15px 30px -15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.features__item {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 15px;
  text-align: left;
  padding: 20px;
}
.features__item h2 {
  font-style: italic;
  font-weight: 800;
  font-size: 22px;
  line-height: 34px;
  color: #FFF;
  margin: 0;
  padding: 0;
}
.features__item h2 span {
  display: block;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  margin: 0 0 10px 0;
}
.features__item p {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  color: #FFF;  
}
form {
  position: relative;
  margin: 20px auto;
  max-width: 660px;
}
.input input {
  background: #fff;
  border: 5px solid #fff;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  padding: 10px 20px;
  font-size: 16px;
  box-sizing: border-box;
  margin-bottom: 20px;
  width: 100%;
}  
.actions input.hs-button {
  background: #A000DC;
  border-radius: 50px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 16px;  
  text-transform: uppercase;
  padding: 9px 20px;  
  position: absolute;
  top: 4px;
  right: 4px;
  border: 2px solid #A000DC;
}
.hs-email label {
  display: none;
}
ul.hs-error-msgs {
  list-style: none;
  margin: 0;
  padding: 0;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  color: #E3FF00;
}

@media (min-width: 768px) {
  body {
    font-size: 20px;
    line-height: 38px;
  }
  .wrapper {
    padding: 100px 30px;
  }
  .container h1 {
    font-size: 24px;
    line-height: 40px;
    margin: 0 0 30px 0;
  }
  .logo img {
    width: 300px;
    margin: 0 auto 40px auto;
  }
  .blurb-mw {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
  }
  .features {
    padding: 26px;
    margin: 50px 0;
    flex-direction: row;
    align-items: stretch;
    gap: 26px;
  }
  .features__item {
    padding: 40px;
    flex: 1;
  }
  .features__item h2 {
    margin: 0;
    padding: 0;
  }
  .features__item h2 span {
    margin: 0 0 10px 0;
  }
  .features__item p {
    font-size: 15px;
    line-height: 26px;
  }
  .input input {
    border: 5px solid #fff;
    border-radius: 50px;
    padding: 10px 20px;
    margin-bottom: 20px;
    width: 100%;
  }  
  .actions input.hs-button {
    border-radius: 50px;
    color: #fff;
    padding: 9px 20px;  
    position: absolute;
    top: 4px;
    right: 4px;
    border: 2px solid #A000DC;
  }
}
