html{
    padding: 0px;
}
body{
    background-image: linear-gradient(220deg, #40CDEA 19%, #4797FD  85%);
    background-size: 100% 150%;
}
.header1{
    display: flex;
    flex-direction: row;
}
.conteneur{
    margin: auto;
    margin-top: 50px;
    max-width: 500px;
    background: #f8f9fd;
    background: linear-gradient(
      0deg,
      rgb(255, 255, 255) 0%,
      rgb(244, 247, 251) 100%
    );
    border-radius: 40px;
    padding: 25px 35px;
    border: 5px solid rgb(255, 255, 255);
    box-shadow: rgba(133, 189, 215, 0.8784313725) 0px 30px 30px -20px;
}
.logo{
    margin-left: 30px;
    width: 120px;
    height: 100px;
}
.titreformu{
    text-align: center;
    font-weight: 900;
    font-size: 30px;
    color: rgb(16, 137, 211);
}
.formualaire {
    margin-top: 20px;
}
.historique h1{
    color:white;
    text-align: center;
    text-decoration: underline;
}
input{
    background-color: transparent;
    width: 80%;
    color: black;
}
.input {
    background-color: transparent;
    width: 100%;
    border: none;
    padding: 15px 20px;
    border-radius: 20px;
    margin-top: 15px;
    box-shadow: #cff0ff 0px 10px 10px -5px;
    border-inline: 2px solid transparent;
}
textarea{
    color: black;
    height: 200px;
    background-color: transparent;
}
.input::-moz-placeholder {
    color: rgb(170, 170, 170);
}
.input::placeholder {
    color: rgb(170, 170, 170);
}
.input:focus {
    outline: none;
    border-inline: 2px solid #12b1d1;
}
.btn {
    display: flex;
    width: 160px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    margin: auto;
    margin-top: 30px;
    height: 55px;
    text-align:center;
    border: none;
    background-size: 300% 100%;
    border-radius: 50px;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
a{
    text-decoration: none;
}
.btn2{
    margin-right: 30px;
}
.titrereu{
    margin-top: 20px;
    text-align: center;
}
.btn:hover {
    color: #fff;
    background-position: 100% 0;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
.btn:focus {
    outline: none;
}
.btn{
    color:white;
    background-image: linear-gradient(
        to right,
        #25aae1,
        #4481eb,
        #04befe,
        #3f86ed
    );
    box-shadow: 0 4px 15px 0 rgba(65, 132, 234, 0.75);
}
.btn span{
    width: 100%;
    margin: auto;
}
p{
    color: red;
}

span{
    margin: auto;
    width: 100%;
    text-align: center;
}

/* Les taches tableau*/
table{
    width: 100%;
    height: auto;
    border-style: solid;
    text-align: center;
    border-color: rgb(255, 255, 255);
    border-radius: 30px;
    margin-top: 40px;
    margin-bottom: 50px;
}
table p{
    color: white;
    width: 90%;
    margin: auto;
    text-align: center;
}
.LesTaches{
    display: flex;
    flex-direction: column;
    width: 80%;
    height: auto;
    margin: auto;
}
.lesactions{
    width: 100%;
    height: 50px;
    border: none;
   background-color: transparent;
}
.titreTab{
    text-align: center;
    width: 20%;
    height: 50px;
}
.descTab{
    width: 40%;
    max-height: 250px;
    padding: 0px;
}
.descTab p{
    height: auto;
    padding: 10px;
    max-height: 250px;
    overflow-y: auto;
}
.date{
    width: 40%;
}
.date p{
    color: white;
    margin: 0px;
    width: 100%;
    text-align: center;
}
th{
    padding: 10px;
    border: solid 2px rgb(255, 255, 255);
    color: #ffffff;
}
.LesTitresTab{
    font-size: 30px;
}

.historique{
    display: flex;
    flex-direction: column;
    width: 80%;
    height: auto; 
    margin: auto;
}

img{
    width: 30px;
    height: 30px;
    margin: auto;
}
.checkbox {
    appearance: none;
    width: 30px;
    aspect-ratio: 1;
    border-radius: 8px;
    border: 2px solid black;
    position: relative;
    transition: all 0.2s ease-in-out;
  }
  
  .checkbox::before {
    font-family: "Quicksand", sans-serif;
    position: absolute;
    bottom: -4px;
    left: 1px;
    content: "✔";
    font-size: 40px;
    color: rgb(82, 209, 84);
    transform: scale(0);
    transition: all 0.2s ease-in-out;
  }
  
  .checkbox:checked::before {
    animation: zoom 0.5s ease-in-out;
    transform: scale(1);
  }
  .textarea_ajout{
    width: 80%;
    margin: auto;
    height: 150px;
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: transparent;
  }
  
  @keyframes zoom {
    0% {
      transform: scale(0);
    }
  
    20% {
      transform: scale(1.5);
    }
  
    40% {
      transform: scale(0.5);
    }
  
    50% {
      transform: scale(1);
    }
  
    70% {
      transform: scale(1.2);
    }
  
    90% {
      transform: scale(0.8);
    }
  
    100% {
      transform: scale(1);
    }
  }
/* Responsive */

@media screen and (max-width: 1200px) {
    .LesTitresTab {
        font-size: 20px;
    }
}

@media screen and (max-width: 520px) {
    .LesTitresTab {
        font-size: 10px;
    }
    .conteneur{
        max-width: auto ;
        width: 80%;
    }
    .input{
        font-size: 15px;
    }
    .titreformu{
        font-size: 15px;
    }
    img{
        width: 20px;
        height: 20px;
    }
    th{
        font-size: 10px;
    }

}