.bjf_btn {
  display: inline-block;
  padding: 0 50px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
  cursor: pointer;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  font-family: inherit;
}

.bjf_submit {
  background-color: #ff6934;
  color: white;
  border: none;
  cursor: pointer;
  height: 50px;
}
.bjf_submit:hover {
  background-color: #ff6934;
}

.bjf_layout {
  max-width: 790px;
  margin: auto;
}
.bjf_layout.theme_inline .bjf_wrap {
  background: transparent;
}
.bjf_layout.theme_inline .bjf_header {
  padding: 0px;
  border-bottom: 2px solid #ff6934;
}
.bjf_layout.theme_inline .bjf_header img {
  max-width: 200px;
}
.bjf_layout.theme_inline .bjf_title {
  text-align: left !important;
  font-size: 24px;
}
.bjf_layout.theme_inline .bjf_desc {
  text-align: center;
  color: #fff;
  margin-top: 8px;
}
.bjf_layout.theme_inline .bjf_body {
  padding: 30px 0;
}
.bjf_layout.theme_inline .bjf_row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 40px;
}
.bjf_layout.theme_inline .bjf_row .bjf_label {
  width: 160px;
  color: #555;
  font-size: 15px;
  font-weight: 700;
}
.bjf_layout.theme_inline .bjf_row .input_wrap {
  width: -webkit-calc(100% - 160px);
  width: -moz-calc(100% - 160px);
  width: calc(100% - 160px);
}
.bjf_layout.theme_inline .bjf_row .input_wrap .bjf_input {
  background: #e5e5e5;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 10px 15px;
  font-size: 16px;
  color: #555;
  margin-bottom: 0px !important;
  min-height: 50px;
  width: 100%;
}
.bjf_layout.theme_inline .bjf_row .bjf_error_msg {
  font-size: 0.8rem;
  display: none;
  color: red;
  font-weight: bold;
}
.bjf_layout.theme_inline .bjf_row.bjf_is_error .bjf_label {
  color: red;
}
.bjf_layout.theme_inline .bjf_row.bjf_is_error .bjf_input {
  border: 1px solid red;
}
.bjf_layout.theme_inline .bjf_row.bjf_is_error .bjf_error_msg {
  display: block;
}
.bjf_layout.theme_inline .bjf_input:focus,
.bjf_layout.theme_inline .bjf_textarea:focus {
  outline: none;
  border-color: #ff6934;
}
.main_content_body:has(.bjf_layout.theme_default) {
  background: -webkit-gradient(linear, left bottom, right top, from(#08aeea), to(#b721ff));
  background: -webkit-linear-gradient(bottom left, #08aeea 0%, #b721ff 100%);
  background: -moz-linear-gradient(bottom left, #08aeea 0%, #b721ff 100%);
  background: -o-linear-gradient(bottom left, #08aeea 0%, #b721ff 100%);
  background: linear-gradient(to top right, #08aeea 0%, #b721ff 100%);
}
.bjf_layout.theme_default .bjf_wrap {
  background: #fff;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.15);
}
.bjf_layout.theme_default .bjf_header {
  padding: 20px 0;
  background: #ff6934;
  -webkit-border-top-left-radius: 10px;
  -moz-border-radius-topleft: 10px;
  border-top-left-radius: 10px;
  -webkit-border-top-right-radius: 10px;
  -moz-border-radius-topright: 10px;
  border-top-right-radius: 10px;
}
.bjf_layout.theme_default .bjf_header img {
  max-width: 200px;
}
.bjf_layout.theme_default .bjf_title {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  color: #fff;
}
.bjf_layout.theme_default .bjf_desc {
  text-align: center;
  color: #fff;
  margin-top: 8px;
}
.bjf_layout.theme_default .bjf_body {
  padding: 36px 30px;
  padding-bottom: 73px;
}
.bjf_layout.theme_default .bjf_row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 40px;
}
.bjf_layout.theme_default .bjf_row .bjf_label {
  width: 160px;
  color: #555;
  font-size: 15px;
  font-weight: 700;
}
.bjf_layout.theme_default .bjf_row .input_wrap {
  width: -webkit-calc(100% - 160px);
  width: -moz-calc(100% - 160px);
  width: calc(100% - 160px);
}
.bjf_layout.theme_default .bjf_row .input_wrap .bjf_input {
  background: #e5e5e5;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 10px 15px;
  font-size: 16px;
  color: #555;
  margin-bottom: 0px !important;
  min-height: 50px;
  width: 100%;
}
.bjf_layout.theme_default .bjf_row .bjf_error_msg {
  font-size: 0.8rem;
  display: none;
  color: red;
  font-weight: bold;
}
.bjf_layout.theme_default .bjf_row.bjf_is_error .bjf_label {
  color: red;
}
.bjf_layout.theme_default .bjf_row.bjf_is_error .bjf_input {
  border: 1px solid red;
}
.bjf_layout.theme_default .bjf_row.bjf_is_error .bjf_error_msg {
  display: block;
}
.bjf_layout.theme_default .bjf_input:focus,
.bjf_layout.theme_default .bjf_textarea:focus {
  outline: none;
  border-color: #ff6934;
}
.main_content_body:has(.bjf_layout.theme_first) {
  background: -webkit-gradient(25deg, #a4ecc3 14%, #9ae98d 52%, #779e80 87%);
  background: -webkit-linear-gradient(25deg, #a4ecc3 14%, #9ae98d 52%, #779e80 87%);
  background: -moz-linear-gradient(25deg, #a4ecc3 14%, #9ae98d 52%, #779e80 87%);
  background: -o-linear-gradient(25deg, #a4ecc3 14%, #9ae98d 52%, #779e80 87%);
  background: linear-gradient(25deg, #a4ecc3 14%, #9ae98d 52%, #779e80 87%);
  padding: 50px;
}
.bjf_layout.theme_first .bjf_wrap {
  background: #F7F7F7;
  -webkit-border-radius-bottom-left: 100px;
  -moz-border-radius-bottom-left: 100px;
  border-bottom-left-radius: 100px;
  -webkit-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 0px 0px;
  -webkit-border-radius-top-right: 100px;
  -moz-border-radius-top-right: 100px;
  border-top-right-radius: 100px;
}
.bjf_layout.theme_first .bjf_header {
  padding: 20px;
  background: #F7415D;
  -webkit-border-radius-top-right: 100px;
  -moz-border-radius-top-right: 100px;
  border-top-right-radius: 100px;
  padding: 20px 20px;
}
.bjf_layout.theme_first .bjf_title {
  font-size: 35px;
  text-transform: uppercase;
  font-weight: 700;
  text-align: start !important;
  color: #fff;
}
.bjf_layout.theme_first .bjf_desc {
  text-align: start !important;
  color: #fff;
  margin-top: 8px;
}
.bjf_layout.theme_first .bjf_body {
  padding: 40px;
}
.bjf_layout.theme_first .bjf_row {
  margin-bottom: 10px;
}
.bjf_layout.theme_first .bjf_label {
  width: 100%;
  color: #000;
  font-size: 18px;
  transform: translate(2px, 10px);
  padding: 10px 0;
}
.bjf_layout.theme_first .input_wrap .bjf_input {
  width: 100%;
  background: none;
  line-height: 38px;
  border-radius: 0;
  font-size: 16px;
  border: none;
  border-bottom: 2px solid #F7415D;
  min-height: 38px;
  padding: 10px 2px;
  margin: 0px;
  outline-color: #F7415D;
  /* :focus,:focus-visible{
     outline-color: #F7415D;
   }*/
}
.bjf_layout.theme_first ::placeholder {
  color: rgba(85, 85, 85, 0.5137254902);
  padding: 0px;
  margin: 0px;
}
.bjf_layout.theme_first .bjf_submit {
  background-color: #F7415D;
  color: #fff;
  border-radius: 30px;
  align-items: center;
  margin: 30px;
}
.main_content_body:has(.bjf_layout.theme_second) {
  background-image: url(../images/form_bg_theme_2.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.bjf_layout.theme_second .bjf_wrap {
  background: #fff;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.15);
  overflow: hidden;
}
.bjf_layout.theme_second .bjf_header {
  padding: 70px 0;
  background-image: url(../images/form_header_theme_2.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-border-top-left-radius: 0px;
  -moz-border-radius-topleft: 0px;
  border-top-left-radius: 0px;
  -webkit-border-top-right-radius: 0px;
  -moz-border-radius-topright: 0px;
  border-top-right-radius: 0px;
}
.bjf_layout.theme_second .bjf_title {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  color: #fff;
}
.bjf_layout.theme_second .bjf_desc {
  text-align: center;
  color: #fff;
  margin-top: 8px;
}
.bjf_layout.theme_second .bjf_body {
  padding: 36px 30px;
  padding-bottom: 73px;
}
.bjf_layout.theme_second .bjf_row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 40px;
}
.bjf_layout.theme_second .bjf_row .bjf_label {
  width: 160px;
  color: #555;
  font-size: 15px;
  font-weight: 700;
}
.bjf_layout.theme_second .bjf_row .input_wrap {
  width: -webkit-calc(100% - 160px);
  width: -moz-calc(100% - 160px);
  width: calc(100% - 160px);
}
.bjf_layout.theme_second .bjf_row .input_wrap .bjf_input {
  background: #e5e5e5;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 10px 15px;
  font-size: 16px;
  color: #555;
  margin-bottom: 0px !important;
  min-height: 50px;
  width: 100%;
}
.bjf_layout.theme_second .bjf_row .bjf_error_msg {
  font-size: 0.8rem;
  display: none;
  color: red;
  font-weight: bold;
}
.bjf_layout.theme_second .bjf_row.bjf_is_error .bjf_label {
  color: red;
}
.bjf_layout.theme_second .bjf_row.bjf_is_error .bjf_input {
  border: 1px solid red;
}
.bjf_layout.theme_second .bjf_row.bjf_is_error .bjf_error_msg {
  display: block;
}
.bjf_layout.theme_second .bjf_input:focus,
.bjf_layout.theme_second .bjf_textarea:focus {
  outline: none;
  border-color: #ff6934;
}

@media (max-width: 767px) {
  .bjf_preview_before_submit .bjf_btn {
    padding: 0px 20px;
    height: 36px !important;
  }
  .bjf_layout.theme_default .bjf_row {
    display: block;
  }
  .bjf_layout.theme_default .bjf_row .bjf_label, .bjf_layout.theme_default .bjf_row .input_wrap {
    width: 100%;
  }
  .bjf_layout.theme_default .bjf_body {
    padding: 36px 30px;
    padding-bottom: 73px;
  }
  .bjf_layout.theme_second .bjf_row {
    display: block;
  }
  .bjf_layout.theme_second .bjf_row .bjf_label, .bjf_layout.theme_second .bjf_row .input_wrap {
    width: 100%;
  }
  .bjf_layout.theme_second .bjf_body {
    padding: 36px 30px;
    padding-bottom: 73px;
  }
}

/*# sourceMappingURL=bj_form.css.map */
