*{
    margin: 0%;
    padding: 0%;
}
body{
    height: 100vh;
    background-color: #0093E9;
background-image: linear-gradient(160deg, #0093E9 0%, #80D0C7 100%);

}
.container{
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    margin-top: 15%;
    

}

.Form-Container{
     
   
    margin-top: 10%;
}

input , select{
    height: 40px;
}
.input{
    width: 400px;
}
.select{
    width: 200px;
}
.submit-btn{
    width: 35px;
    
}
.submit-icon{
    font-size: 22px;
    
    margin-right: 20px;
    align-items: center;
    display: inline-flex;
   
}
.todo-item{
    background-color: white;
    margin: 5px 0px;
    
    width: 333px;
    display: flex;
    justify-content: space-between;
}
.todo-title{
   display: inline-block; 
   line-height: 2.5;
   padding-left: 17px;
}
.container-result{
    margin-top: 5%;
}
.todo-icon{
    font-size: 30px;
    padding: 5px 10px;
    padding: 15px;
    color: white;
}
.todo-check{
    margin-right: -4px;
    background-color: #002567;
}
.todo-delete{
    background-color: #7912eb;

}
.completed-todo{
   opacity: .6;
    text-decoration: line-through;
}
.remove-todo{
    display: none;
}
   
