
#popup{ 
    width: 100vw;
    height: 100vh;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    display: none;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.popupT{
    width: 17.8699070764832VW;
    height: 44.359949302915076vh;
    border: solid 2px #a7a7a7;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgb(255, 255, 255)
}

.nome-tarefa{
    width: 14.295925661186562VW;
    height: 6.337135614702154vh;
    margin: 4px;
    outline: 0px;
    border-radius: 4px;
    border-color: #0d9c00 ;
    resize: none;
}

.tarefa{
    width: 14.295925661186562VW;
    height: 31.685678073510772vh;
    margin: 4px;
    outline: 0px;
    border-radius: 4px;
    border-color: #0d9c00 ;
    resize: none;
}

.cor{
    background-color: #ececec;
    color: rgb(0, 0, 0);
}

::placeholder{
    color:rgb(0, 0, 0)
}

.animate {
    -webkit-animation: animatezoom 0.6s;
    animation: animatezoom 0.6s
}
  
@-webkit-keyframes animatezoom {
    from {-webkit-transform: scale(0)} 
    to {-webkit-transform: scale(1)}
}
    
@keyframes animatezoom {
    from {transform: scale(0)} 
    to {transform: scale(1)}
}
