body.page-template-page-contact-form {
  background: linear-gradient(
    230deg,

    #e1cee8 0%,
    #dad5d9 20%,

    #d4dbca 26%,
    #d9dbcb 32%,

    #f3e3d7 44%,
    #f4e4d8 56%,

    #d4dbca 68%,
    #d9dbcb 74%,

    #e1cee8 86%,
    #dad5d9 100%
  );
}


.page-template-page-contact-form {
  overflow-x: auto;
}

.register-page {
  max-width: 1180px;
  min-width: 1180px;
  color: #0f5a35;
}

.register-hero {
  width: 1180px;
  box-sizing: border-box;
  margin: 0 auto;
  text-align: center;
  padding: 48px 20px 34px;
}

.register-hero h1 {
  max-width: 980px;
  margin: 0 auto 24px;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.18;
}

.register-price {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 600;
  font-style: italic;
}

.register-intro {
  max-width: 620px;
  margin: 0 auto;
  font-size: 17px;
  font-style: italic;
  line-height: 1.45;
}

.lets-chat {
  max-width: 620px;
  margin: 22px auto 0;
  font-size: 30px;
  line-height: 1.45;
  font-weight: 300;
  color: #0f5a35;
  text-align: center;
}

.lets-chat p {
  margin: 0;
}

.register-divider {
  width: 32px;
  height: 3px;
  background: #0f5a35;
  margin: 30px auto 0;
}

.register-content {
  display: grid;
  grid-template-columns: 330px 550px 301px;
  border-top: 1px solid #0f5a35;
}

.register-sidebar {
  padding: 26px 28px;
  font-size: 16px;
}

.sidebar-section {
  border-top: 1px solid #0f5a35;
  padding: 14px 0;
}

.sidebar-section h3 {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 600;
}

.sidebar-section p {
  margin: 0;
}

.sidebar-section ul {
  margin: 6px 0 0 20px;
  padding: 0;
}

.register-form-area {
  padding: 26px 34px 70px 16px;
}

.register-form {
  max-width: 560px;
  margin: 0 auto;
}

.register-form label {
  display: block;
  margin-bottom: 18px;
  font-size: 14px;

}

.form-row.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.register-form input[type="text"],
.register-form input[type="email"],
.register-form textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #0f5a35;
  background: #f4f3e8;
  padding: 11px 12px;
  font-size: 15px;
  color: #0f5a35;

  font-weight: 400;

}

.register-form textarea {
  height: 150px;
  resize: vertical;
}

.checkbox-row {
  display: grid !important;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 14px !important;
  line-height: 1.2;

  font-weight: 400;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin: 0;
}

/* First checkbox lower */
.disclaimer-checkbox input {
  margin-top: 36px;
}

/* Second checkbox normal */
.terms-checkbox input {
  margin-top: 0;
}

.form-status-message {
  margin-bottom: 20px;
  padding: 12px 16px;
  border: 1px solid #0f5a35;
  color: #0f5a35;
  background: #f4f3e8;
  text-align: center;
  font-weight: 600;

}

.register-submit {
  display: block;
  width: 150px;
  margin: 42px auto 0;
  padding: 12px 20px;
  border: none;
  background: #21652f;
  color: #ffffff;
  font-size: 15px;
  cursor: pointer;
}

.register-image {
  background: #f4f3e8;
  display: block;
  overflow: hidden;

}

.register-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* MOBILE */
@media (max-width: 768px) {
  .page-template-page-contact-form {
    overflow-x: hidden;
  }

  .register-page {
    min-width: 0;
    max-width: none;
    width: 100%;
  }

  .register-hero {
    width: 100%;
    padding: 30px 22px 24px;
  }

  .register-hero h1 {
    max-width: none;
    margin: 0 auto 16px;
    font-size: 32px;
    line-height: 1.18;
  }

  .register-intro {
    max-width: none;
    font-size: 15px;
    line-height: 1.45;
  }

  .lets-chat {
    max-width: none;
    margin-top: 16px;
    font-size: 24px;
    line-height: 1.35;
  }

  .register-divider {
    margin: 30px auto 0;
  }

  .register-content {
    grid-template-columns: 1fr;
    border-top: 1px solid #0f5a35;
  }

  .register-sidebar {
    order: 1;
    padding: 22px 24px;
  }

  .register-form-area {
    order: 2;
    padding: 26px 22px 48px;
  }

  .register-image {
    order: 3;
  }

  .form-row.two-columns {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .register-form {
    max-width: none;
  }

  .register-form label {
    margin-bottom: 16px;
  }

  .register-image img {
    width: 100%;
    height: auto;
  }
}