.main_container {
  width: 1240px;
  margin: 100px auto;
}

.two_cols {
  display: flex;
  flex-direction: row;
  gap: 40px;
}

.left_image_wrapper {
  width: 600px;
  height: 800px;
  background-repeat: no-repeat;
  background-size: contain; /* or 'cover', depending on your art */
  background-position: left top;
  border-radius: 16px;
}

.right {
  padding: 24px;
}

.right .text-wrapper {
  margin-bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 31px;
}

.form-wrapper > h2 {
  margin-bottom: 40px;
}

.cf-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-bottom: 32px;
}

.cf-row .cf-field > input {
  width: 268px;
  height: 54px;
  padding: 16px;
  font-family: Poppins;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 160% */
  border-radius: 12px;
  border: 1px solid var(--200-Neutral, #dedede);
  background: #fff;
}

.cf-field.message {
  margin-bottom: 24px;
}

.cf-field.message > textarea {
  width: 552px;
  height: 134px;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--200-Neutral, #dedede);
  background: #fff;
  font-family: Poppins;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 160% */
}

.cf-field > label {
  display: none;
}

.cf-field.cf-field--checkbox {
  margin-bottom: 60px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.cf-field.cf-field--checkbox > input {
  width: 24px;
  height: 24px;
  padding: 16px;
  border-radius: 6px;
  border: 1px solid var(--200-Neutral, #dedede);
  background: #fff;
}

.cf-field.cf-field--checkbox > label {
  display: inline;
  color: var(--700-Neutral, #3e4144);
  /* Body/P3 */
  font-family: Poppins;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 160% */
}

.cf-actions > button {
  display: flex;
  flex-direction: row;
  height: 48px;
  padding: 16px 24px;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-radius: 12px;
  background: var(--500-Crea-Pink, #fa455c);
  border: none;
  cursor: pointer;
}

.cf-submit > span {
  color: #fff;
  font-family: Poppins;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px; /* 146.667% */
  letter-spacing: 0.15px;
}

.cf-submit .button-chevron {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("../img/chevrons/right_join_us.svg");
  background-repeat: no-repeat;
  background-size: contain; /* or 'cover', depending on your art */
  background-position: left center;
}

@media (max-width: 640px) {
  .main_container.joinus {
    width: 100%;
    gap: 9px;
    opacity: 1;
    padding: 40px 30px !important;
  }
  .main_container.joinus .two_cols .right {
    padding: 0;
  }
  .two_cols {
    flex-direction: column;
    gap: 40px;
  }
  .left_image_wrapper {
    display: none;
  }
  .right .text-wrapper {
    margin-bottom: 50px;
  }
  .cf-row {
    flex-direction: column;
    gap: 16px;
  }
  .cf-row .cf-field > input {
    width: 100%;
  }
  .cf-field.message > textarea {
    width: 100%;
  }
}
