@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #B7C4CF;
    height: 100vh;
    font-family: 'Poppins', sans-serif;
}

.conteiner {
    width: 45%;
    min-width: 450px;
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    top: 30px;
    padding: 30px 40px;
}
.conteiner label {
    font-weight: 500;
    font-size: 20px;
    position: relative;
    color: #8052ec;
}
.conteiner-edit{
    width: 45%;
    min-width: 450px;
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    top: 30px;
    padding: 30px 40px;
}
.conteiner-edit label{
    font-weight: 500;
    font-size: 20px;
    position: relative;
    color: #8052ec;
}
.hide{
    display: none;
}

#newTask{
    position: relative;
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 5px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}


#newTask input {
    width: 70%;
    height: 45px;
    padding: 12px;
    font-size: 15px;
    border: 2px solid #d1d3d4;
    border-radius: 5px;
    color: #111111;
    position: relative;
}
#newTask input:focus {
    outline: none;
    border-color: #8052ec;
}

#newTask button{
    background-color: #8052ec;
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    padding: 12px;
    outline: none;
    font-size: 16px;
    float: right;
    font-weight: 500;
}
#erro{
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    margin: 10px 0 0;
    text-align: center;
    color: #c42424;
    display: none;
}

#addTask {
    background-color: #fff;
    padding: 30px 20px;
    margin-top: 60px;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    width: 100%;
}

.task {
    background-color: #fff;
    height: 50px;
    padding: 5px 10px;
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #d1d3d4;
    cursor: pointer;
}

.task span {
    font-size: 15px;
    font-weight: 400;
}

.delete {
    background-color: #8052ec;
    color: #fff;
    height: 100%;
    width: 40px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    outline: none;
    background-image: url('./lixeira-xmark.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 25px;
}
.edit {
    background-color: #8052ec;
    color: #fff;
    height: 100%;
    width: 40px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    outline: none;
    background-image: url('./lapis.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 25px;
}

.completed {
    text-decoration: line-through;
    color: #a0a0a0;
}
.conteiner-footer{
    margin: auto;
    left: 0;
    right: 0;
    bottom: 0;
}