.blockInputText{

    position: relative;
    width: 90%;
    height:auto;
    /* background-color: red; */
    display: flex;
    align-items:center;
    text-decoration:none;
    justify-content: center;
    flex-direction: column;
    margin: 14px;
}

input[type=text],input[type=search],input[type=password], 
input[type=email],input[type=number],input[type=date],
input[type=time],input[type=tel],  select,textarea {
    width: 90%;
    padding: 11px 22px;
   margin: 2px 0px 17px 0px;
    display: inline-block;
   /* border: 1px solid rgb(30, 30, 30); */
   border: 0px;
   background-color: var(--ChampEcriture);
    border-radius: 2em;
    box-sizing: border-box;
    color: var(--ecriture);
    cursor: pointer;
    font-size: 18px;

    -webkit-appearance: none; 
  }


  textarea::-webkit-scrollbar {
    display: none;
  }
  
  textarea {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }

 

  .labelInputText{
    position: absolute;
    left: 2%;
    font-weight:500;
    padding-bottom: 12px;

  }


textarea{
    min-height: 200px;
    height: auto;
    resize: none;
    font-family: system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    color: var(--ecriture);
}


@media screen and (max-width: 800px) {
 
  input[type=text],input[type=search],input[type=password], 
  input[type=email],input[type=number],input[type=date],
  input[type=time], select,textarea {
      width: 90%;
      padding: 11px 22px;
      margin: 2px 0px 17px 0px;
      display: inline-block;
      /* border: 1px solid rgb(30, 30, 30); */
      border: 0px;
      background-color: var(--ChampEcriture);
      border-radius: 2em;
      box-sizing: border-box;
      color: var(--ecriture);
      cursor: pointer;
      font-size: 18px;

      -webkit-appearance: none; 
    }

}


