.root{
    display: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body{
    background: #f3f6fa;
}

.main{
    display: flex;
    align-items: center;
    flex-direction: column;
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 24px;
}

#divnome{
    display: flex;
    align-items: center;
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

form{
    display: flex;
    gap: 20px;
}

input{
    width: 500px;
    border: 2px solid #ccc;
    border-radius: 10px;
    font-size: 18px;
    height: 52px;
    padding: 0 18px;
    
}

input::placeholder{
    font-size: 20px;
    color: #94a3b8;
}

.botaoadicionar{
    background-color: #2563eb;
    color: #ffffff;
    cursor: pointer;
    border: none;
    border-radius: 10px;
    width: 200px;
    height: 52px;
    font-size: 18px;
}

#totalcard{
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 14px;
    color: #64748b;
}

#concluidas{
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 14px;
    color: #64748b;
}

#pendentes{
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 14px;
    color: #64748b;
}

.section{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
    width: 850px;
    height: auto;
    min-height: 500px;
    background-color: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
}

.cards{
    display: flex;
    justify-content: center;
    gap: 15px;
}

.card1{
    display: flex;
    justify-content: center;
    gap: 10px;
    width: 120px;
    height: 30px;
    background-color: #ffffff;
    border: 2px solid #cbd5e1;
    border-radius: 10px;
    padding: 20px;
}

.card1 #clipboard{
    color: #2563eb;
}

.card1 #check{
    color: green;
}

.card1 #clock{
    color: orange;
}

.totalcard1{
    display: flex;
    flex-direction: column;
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 14px;
    color: #64748b;
}

.totalcard1 #quantidadeTarefa{
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #000000;
}

.totalconcluidas1{
    display: flex;
    flex-direction: column;
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 14px;
    color: #64748b;
}

.totalconcluidas1 #concluidasTotal{
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #000000;
}

.totalpendentes1{
    display: flex;
    flex-direction: column;
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 14px;
    color: #64748b;
}

.totalpendentes1 #pendentesTotal{
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #000000;
}

.cardtarefa{
    display: flex;
    align-items: center;
    position: relative;
    gap: 20px;
    width: 600px;
    height: 30px;
    background-color: #ffffff;
    border: 2px solid #cbd5e1;
    border-radius: 10px;
    padding: 20px;
}

.cardtarefa .trash{
    position: absolute;
    right: 20px;
    cursor: pointer;
    color: red;
}

.cardtarefa .circle{
    position: absolute;
    left: 20px;
    cursor: pointer;
}

.cardtarefa .tarefa{
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 20px;
    color: #64748b;
    position: absolute;
    left: 70px;
}

.tarefas{
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 20px;
    color: #64748b;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;

}

.concluida .tarefa{
    text-decoration: line-through;
    color: #94a3b8;
}

.iconeConcluido{
    color: green;
}

.rodape{
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    text-align: center;
    font-size: 15px;
    color: #64748b;
}

