/* contactUs */
#contactUs {
    padding: 50px 20px;
    background-image: linear-gradient(to top, white, rgb(241, 253, 255));
}
    .formContainer{
      width: 100%;
      text-align: center;
    }

    .formContainer h2 {
      text-align: center;
      color: rgb(0, 17, 20);
      font-size: clamp(30px, 6vw, 32px);
      font-family: 'Heebo', sans-serif;
      font-weight: 700;
      margin-bottom: 50px;
    }

    #leadForm {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      text-align: center;
      gap: 20px;
    }

    input, textarea  {
      padding: 10px 20px;
      margin-bottom: 1.00rem;
      border: none;
      color: rgb(0, 17, 20);
      font-size: 1rem;
      font-family: 'Heebo', sans-serif;
      font-weight: 400;
      font-size: clamp(14px, 3vw, 18px);
      width: clamp(150px, 30%, 300px);
      box-sizing: border-box;
      border-radius: 50px;
      background-color: white;
      box-shadow: 0 0 8px rgba(0,0,0,0.1);
    }
    textarea {
      margin-bottom: 0;
    }

    input, textarea:focus {
      /* border-color: #007bff; */
      outline: none;
      text-align: center;
    }

  input::placeholder {
  color: rgb(27, 20, 100);
  text-align: center;
  font-weight: 200;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
  -webkit-text-fill-color: rgb(27, 20, 100) !important;
  transition: background-color 9999s ease-in-out 0s; /* כדי למנוע הבהוב */
}
    textarea::placeholder {
  color: rgb(27, 20, 100);
  text-align: center;
  font-weight: 200;
}

    @media (max-width: 1300px) {
    input, textarea {
         width: 80%;
     }
   }

    #sendBtn {
      padding: 15px 20px;
      margin-bottom: 1.00rem;
      background-image: linear-gradient(to right, rgb(6, 38, 61), rgb(0, 160, 184));
      color: white;
      font-weight: 600;
      border: none;
      border-radius: 20px;
      font-size: 1rem;
      cursor: pointer;
      transition: background-color 0.3s;
      width: clamp(150px, 30%, 300px);
    }
     #sendBtn:hover {
      background-image: linear-gradient(to right, rgb(0, 160, 184), rgb(6, 38, 61));
     }

    @media (max-width: 1300px) {
    #sendBtn {
         width: 50%;
     }
   }

    #sendBtn:hover {
      background-color: #008db8;
    }

    #responseMessage {
      color: rgb(27, 20, 100);
      font-family: 'Assistant', sans-serif;
      font-weight: 100;
      font-size: 28px;
    }