/* contactUs */
#contactUs {
    padding: 50px;
    background-image: linear-gradient(to top, rgb(255, 212, 102), white);
}
    .formContainer{
      width: 100%;
      text-align: center;
    }

    .formContainer h2 {
      text-align: center;
      margin-bottom: 1.5rem;
      color: rgb(242, 1, 1);
      font-size: clamp(20px, 6vw, 42px);
      margin-bottom: 50px;
      font-family: 'Rubik Dirt', sans-serif;
      font-weight: 200;
    }

    #leadForm {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      text-align: center;
      gap: 20px;
    }

    label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: bold;
      color: #555;
    }

    input, textarea  {
      padding: 15px 20px;
      margin-bottom: 1.00rem;
      border:none;
      border-radius: 50px;
      font-size: 1rem;
      font-family: 'Assistant', sans-serif;
      font-weight: 100;
      font-size: clamp(14px, 3vw, 18px);
      transition: border-color 0.3s;
      width: clamp(200px, 30%, 400px);
      box-sizing: border-box;
    }
    textarea {
      margin-bottom: 0;
    }

    input, textarea:focus {
      border-color: #007bff;
      outline: none;
    }

    @media (max-width: 1300px) {
    input, textarea {
         width: 80%;
     }
   }

    #sendBtn {
      padding: 15px 20px;
      margin-bottom: 1.00rem;
      background-image: linear-gradient(to right, rgb(242, 1, 1), rgb(167, 0, 0));
      color: white;
      border: none;
      border-radius: 50px;
      font-size: 1rem;
      cursor: pointer;
      transition: background-color 0.3s;
      width: 20%;
      font-family: 'Rubik Dirt', sans-serif;
      font-weight: 200;
    }

    @media (max-width: 1300px) {
    #sendBtn {
         width: 70%;
     }
   }

    #sendBtn:hover {
      background-image: linear-gradient(to right, rgb(242, 1, 1), rgb(242, 1, 1));
    }

    #responseMessage {
      color: white;
      font-family: 'Assistant', sans-serif;
      font-weight: 100;
      font-size: 28px;
    }