@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap");

input,
textarea,
label,
button {
  font-family: "Open Sans", sans-serif;
}

.container {
  /* background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); */
  width: 100%;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-row {
  display: flex;
  gap: 10px;
}

.form-group {
  display: flex;
  flex-direction: column;
  width: 100%;
}

label {
  font-size: 14px;
  line-height: 19px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #0172e6;
}

input,
textarea,
select {
  width: 100%;
  padding: 8px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 12px;
}

input::after {
  color: #0172e6;
  content: "*";
  margin-left: 10px;
}

textarea::after {
  color: #0172e6;
  content: "*";
  margin-left: 10px;
}

input::placeholder {
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  color: #8d8d8d;
}

/* For better cross-browser support */
::-webkit-input-placeholder {
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  color: #8d8d8d;
}
:-moz-placeholder {
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  color: #8d8d8d;
}
::-moz-placeholder {
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  color: #8d8d8d;
}
:-ms-input-placeholder {
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  color: #8d8d8d;
}

textarea::placeholder {
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  color: #8d8d8d;
}

/* For better cross-browser support */
::-webkit-input-placeholder {
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  color: #8d8d8d;
}
:-moz-placeholder {
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  color: #8d8d8d;
}
::-moz-placeholder {
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  color: #8d8d8d;
}
:-ms-input-placeholder {
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  color: #8d8d8d;
}

.submit-btn {
  width: 100%;
  padding: 10px;
  border: none !important;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  cursor: pointer;
  color: white !important;
  background: linear-gradient(140deg, #0569cf, #037275, #04c874);
  transition: 0.3s;
}

.submit-btn:hover {
  background: linear-gradient(
    140deg,
    #04c874,
    #037275,
    #0569cf
  ); /* Reverse Gradient */
}

.WUF{
    display: none;
}

.OFG{
    display: none;
}

#loader {
  position: absolute;
  top: 50%;
  right: 45%;
  /* transform: translate(-50%, -50%); */
  z-index: 9999; /* Ensure it stays above everything */
}

.form-processing {
  opacity: 0.5; /* Make form look inactive */
  pointer-events: none; /* Prevent interactions */
}


@media (min-width: 320px) and (max-width: 767px) {
  /* .container {
    background: none;
    padding: 0;
    border-radius: none;
    box-shadow: none;
  } */

  .form-row {
    flex-direction: column;
  }

  label {
    color: #fff;
  }
  
  input,
  textarea,
  select {
    border: none !important;
  }

  .submit-btn {
    margin-top: 10px !important;
    background: linear-gradient(140deg, #0569cf, #037275, #2177ce);
    /* background-color: #0569cf !important; */
  }
  .submit-btn:hover {
    background: linear-gradient(140deg, #2177ce, #037275, #0569cf);
    /* background-color: #2177ce !important; */
  }
}
