.custom-form .input-area input{
    background-color: transparent !important;
}

.custom-form legend{
    color: rgba(255, 255, 255, 0.4) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
}

.custom-form .input-area input{
    border-top: 0px !important ;
    border-bottom: 2px solid rgb(255 255 255 / 0.1) !important;
    border-right: 0px !important;
    border-left: 0px !important;
    border-radius: 0px !important;
    padding: 0.75rem 1.25rem 0.75rem 1.25rem !important;
    font-size: 16px !important;
    color: rgba(255 255 255 / 0.7) !important;
    line-height: 22px !important;
    height: 48px !important;
}
.custom-form .gfield_checkbox label{
    font-size: 16px !important;
    color: rgba(255 255 255 / 0.4) !important;
}

.custom-form .gfield_checkbox input:focus{
    outline: none !important;
}

.custom-form .gfield_checkbox {
    display: grid !important;
}

.custom-form .gfield_checkbox input{
    background: transparent !important;
}

@media (min-width: 1024px){
    .custom-form .gfield_checkbox {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

@media (min-width: 768px){
    .custom-form .gfield_checkbox {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}


.custom-form input:focus-visible{
    outline: 2px solid white !important;
}

.gform_heading .gform_title{
    display: none !important;
}

.gform_button{
    text-transform: uppercase !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 22px !important;
    background-color: rgb(185 108 88 / var(--tw-bg-opacity, 1)) !important;
    padding:  0.75rem 2rem 0.75rem 2rem !important;
    border-radius: 9999px !important;
}

.custom-form .gfield_checkbox input[type="checkbox"] {
  position: relative;
  width: 1.25rem; /* 20px */
  height: 1.25rem;
  appearance: none;
  border: 2px solid rgba(255, 255, 255, 0.4); /* border-white/40 */
  border-radius: 9999px; /* fully rounded circle */
  background-color: #151515;
  cursor: pointer;
  outline: none;
}

/* Inner circle */
.custom-form .gfield_checkbox input[type="checkbox"]::before {
  content: "";
  position: absolute;
  inset: 0.25rem; /* same as inset-1 */
  background-color: #151515;
  border-radius: 9999px;
  display: block;
}

/* Not checked: hide the inner fill */
.custom-form .gfield_checkbox input[type="checkbox"]:not(:checked)::before {
  display: none;
}

/* Checked state */
.custom-form .gfield_checkbox input[type="checkbox"]:checked {
  border-color: #ffffff;
  background-color: #151515;
}

.custom-form .gfield_checkbox input[type="checkbox"]:checked::before {
  background-color: #ffffff;
  display: block;
}

/* Focus-visible outline */
.custom-form .gfield_checkbox input[type="checkbox"]:focus-visible {
  outline: 2px solid #151515;
  outline-offset: 2px;
}

/* Disabled state */
.custom-form .gfield_checkbox input[type="checkbox"]:disabled {
  border-color: #d1d5db;     /* gray-300 */
  background-color: #f3f4f6; /* gray-100 */
}

.custom-form .gfield_checkbox input[type="checkbox"]:disabled::before {
  background-color: #9ca3af; /* gray-400 */
}

/* Forced colors support */
@media (forced-colors: active) {
  .custom-form .gfield_checkbox input[type="checkbox"] {
    appearance: auto;
  }
  .custom-form .gfield_checkbox input[type="checkbox"]::before {
    display: none;
  }
}

@media (max-width: 768px){
   .nav-logo{
    max-width: 150px !important;
    height: auto;
   }
}

@media (min-width: 768px){
   .nav-logo{
    max-width: 200px !important;
    height: auto;
   }
}

@media (min-width: 1280px){
   .nav-logo{
    max-width: 280px !important;
    height: auto;
   }
}