body {
  font-family: 'Noto Sans', sans-serif;

}


.bg_color {
  text-align: center;
}

.bg_color span {
  background: white;
  position: absolute;
  top: 0;
  right: 10px;
  padding: 10px;
  font-weight: 600;
  width: 265px;
}

.bg-gold {
  padding: 8px 0;
  position: relative;
}

.form_heading {
  display: flex;
  /* KEY */
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-weight: 600;

  font-size: 1.2rem;
  background: #67442c;
  padding: 5px 17px;
  border-radius: 12px;
  position: relative;
  text-align: center;
}

.sub_heading {
  font-size: 1.1rem
}

.heading-text {
  flex: 1;
  text-align: center;
}

.form_heading h5 {
  margin: 0;
  line-height: 1.4;
  font-size: 1.3rem;
}

.form_heading img {
  width: 74px;
}

@media (max-width: 576px) {
  .form_heading {
    flex-direction: column;
    text-align: center;
  }

  .form_heading img {
    margin: 10px 0 0;
  }
}

.form_section {
  /* background-color: #fff; */
  position: relative;
  margin-top: 10px;
  z-index: 9;
}

.form_section h5 {
  padding: 35px;
}

@media screen and (max-width: 768px) {
  .display_none {
    display: none;
  }

  .padding_top {
    padding-top: 20px;
  }

  .padding_top_wrap {
    padding-top:32px !important;
  }

  .responsive_top {
    padding-top: 55px !important;
  }
  legend{
    font-size: 0.89rem !important;
  }
}


fieldset {
  border: 2px dotted #eab38e;
  margin: 10px;
  padding: 20px;

  position: relative;
  margin-bottom: 25px;
}

p {
  border-bottom: 1px dotted #a87cba;
  margin: 10px;
  padding-bottom: 10px;
}

legend {
  background-color: #e7c8b2;
  border: 1px solid #efd1aa;
  border-radius: 10px;
  padding: 5px 10px;
  text-transform: uppercase;
  position: absolute;
  width: fit-content;
  top: -12px;
  font-size: 1rem;
}

.title {
  float: left;
  width: fit-content;
  text-align: left;
  padding-right: 5px;
}

.form-label {
  font-size: 14px;
}

.custom_field {
  border-radius: 10px;
  border: 1px solid #c9b29b;
  padding: 7px 11px;
  font-size: 0.95rem;
  resize: vertical;
  box-shadow: none;
}

.custom_field:focus {
  border-color: #67442c;
  box-shadow: 0 0 0 0.15rem rgba(103, 68, 44, 0.25);
}

.custom-submit-btn {
  background: linear-gradient(135deg, #67442c, #8b5e3c);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 10px 36px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}

.custom-submit-btn:hover {
  background: linear-gradient(135deg, #8b5e3c, #67442c);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.custom-submit-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.custom-submit-btn:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(103, 68, 44, 0.4);
}