:root{
    --primary-color: #151a38;
    --secondary-color: #181B48;
    --border-color:  #494f6a;
}


*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

main{
    width: 100%;
    height: 100vh;
    background: #020024;
    background: #020024;
    background: linear-gradient(156deg, rgba(2, 0, 36, 1) 18%, rgba(8, 8, 114, 1) 88%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

section.container{
    background-color: var(--primary-color);
    width: 500px;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 2px 5px 10px var(--border-color);
}

section.container h1{
    color: white;
}

.container-input{
    margin-top: 10px;
    text-align: left;
    width: 100%;
    height: auto;
    padding: 20px 0 20px 20px;
    border-radius: 10px;
}

.container-list{
    margin-top: 10px;
    width: 100%;
    height: auto;
    padding: 20px;
    padding-bottom: 30px;
    border-radius: 10px;
}

.container-list h3{
    color: white;
    border-bottom: 2px solid white ;
}

#input-descricao{
    width: 80%;
    padding: 8px 0;
    padding-left: 20px;
    border-radius: 50px;
    border: solid 2px var(--border-color);
    background-color: var(--secondary-color);
    outline: none;
    color: white;
}

#button-add{
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    border: none;
    background-color: #7c7dd3;
    transition: 0.5s ease;
}

#button-add:hover{
    background-color: #4c4d81;
}    

#button-add i{
    color: white;
}

#error{
    color: white;
    display: flex;
}

li.lists {
    display: flex;
    margin-top: 8px;
    width: 100%;
    border-radius: 10px;
    border: solid 2px var(--border-color);
    background-color: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    margin-bottom: 0.2rem;
    list-style: none;
    text-transform: uppercase;
    justify-content: space-between;
    font-size: 14px;
    cursor: pointer;
}

li.lists .lists-space:nth-child(2){
    width: 100%;
    padding-left: 8px;
}

li.lists .fa-circle-check{
    color: #1c7338;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

li.lists .fa-circle-check:hover{

    color: #218641
}


li.lists:hover .fa-circle-check{
    opacity: 1;
}

li.lists .fa-trash{
    color: #861f21;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

li.lists .fa-trash:hover{
    color: #a02529;
}

li.lists:hover .fa-trash{
    opacity: 1;
}

li.lists.done{
    background-color: #090867;
}