@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

main {
  background
    no-repeat 150% -10%;
  background-size: 60%;
}

@media screen and (max-width: 768px) {
  main {
    background
      no-repeat -3% -10%;
    background-size: 200%;
  }
}

.body-container {
  max-width: 1000px;
  margin: 0 auto;
  font-family: 'Poppins', sans-serif;
}

.dnd-section {
  padding: 40px;
}

/* Forms */
.widget-type-form {
  position: relative;
  padding: 80px 60px 120px;
  border-radius: 100px;
  margin-left: 60px;
  background: #f4f4f4 
    no-repeat center bottom;
  background-size: contain;
  font-family: 'Poppins', sans-serif;
}

@media screen and (max-width: 900px) {
  .widget-type-form {
    margin-left: 20px;
    padding-bottom: 140px;
  }
}

@media screen and (max-width: 768px) {
  .widget-type-form {
    margin-left: 0;
    margin-top: 40px;
    padding-bottom: 160px;
  }
}

@media screen and (max-width: 500px) {
  .widget-type-form::after {
    padding-bottom: 200px;
  }
}

.widget-type-form > span {
  z-index: 1;
  position: relative;
  font-family: 'Poppins', sans-serif;
}

label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.hs-field-desc {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  padding: 0 0 4px 0;
  color: #595959;
}

input,
textarea,
select {
  background: #ffffff;
  border: 1px solid #949494;
  border-radius: 4px;
  padding: 15px 12px;
  width: 100% !important;
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 20px;
}

select {
  width: 100%;
  padding: 8px;
  font-size: 14px;
}

.hs-input.invalid {
  border-color: #ee0004;
}

button,
.hs-button,
input[type="submit"] {
  display: inline-block;
  margin-top: 10px;
  background: #ff542c;
  border-radius: 30px;
  width: auto;
  padding: 14px 28px;
  color: #fff;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  font-family: 'Poppins', sans-serif;
}

button:hover,
button:active,
.hs-button:hover,
.hs-button:active,
input[type="submit"]:hover,
input[type="submit"]:active {
  background: #398080;
}

.hs-error-msgs {
  display: block;
  list-style: none;
  margin: -16px 0 20px;
  padding: 0;
}

.hs-error-msg {
  color: #ee0004;
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 11px;
  line-height: 13px;
}