.form-search-section {
    margin-top: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.25);
    width: 55%;
    height: 85px;
    border-radius: 5px;
  }
  
  .search-form-class {
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    width: 98%;
    height: 68px;
    justify-content: space-around;
    border-radius: 6px;
  }
  
  .form-search-element-input, .search-form-btn, .form-search-element-input-type {
    padding-left: 5px;
    width: 130px;
    height: 44px;
    border: solid 1px rgb(187, 184, 184);
    border-radius: 5px;
    }
  
    .search-form-btn {
      background-color: #07b01f;
      color: white;
      width: 100px;
      display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    }

    .text-desktop {
      display: inline;
  }

    .icon-mobile {
      display: none; 
  }

    @media (max-width: 576px) {
       .form-search-section {
        margin-top: 0;
        width: 100%;
        height: 14%;
      }

      .search-form-class {
        /* flex-direction: column; */
        width: 99%;
        height: 86%;
      }

     .form-search-element-input, .form-search-element .search-form-btn {
        padding: 0;
        text-align: center;
        width: 71px;
        border-radius: 0;
        border-top: none;
        border-bottom: none;
        border-left: none;

        }

        .form-search-element-input-type {
        width: 71px;
        border-radius: 0;
        border-top: none;
        border-bottom: none;
        border-left: none;
        
      }  
        
       .search-form-btn {
          width: 39px
        }

        .text-desktop {
          display: none; 
      }
    
      .icon-mobile {
          display: inline; 
          font-size: 1.2em; 
      }
    }

    @media (max-width: 401px) {
      .form-search-section {
       margin-top: 0;
       width: 50%;
       height: 70%;
     }

     .search-form-class {
       flex-direction: column;
       width: 70%;
       height: 86%;
     }

     .form-search-element-input, .form-search-element .search-form-btn {
      padding: 0;
      text-align: center;
      width: 100%;
      border-radius: 0;
      border-bottom: solid 1px black;

      }

      .form-search-element-input-type {
      width: 100%;
      border-radius: 0;
      border-bottom: solid 1px black;
      border-right: none;
      
    } 
    }