*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background: #020610;
    font-family: sans-serif;
}
.container{
    max-width: 1200px;
    margin: 0 auto;
}
.wrapper{
    margin: 15px 0;
    display: flex;
    padding: 90px 0;
    flex-direction: column;
    background: #0b1167;
    border-radius: 17px;
    align-items: center;
    position: relative;
}
.title{
    font-size: 52px;
    color: rgb(255, 255, 255);
    font-family: "Dancing Script", cursive;
}
.form{
    gap: 12px;
    display: flex;
    align-items: center;
    position: absolute;
    width: 500px;
    bottom: -7%;
}
.input-todo{
    flex: 1;
    outline: none;
    font-size: 18px;
    color: #0b1167;
    padding: 8px 26px;
    border-radius: 10px;
    border-style: none;
    transform: scaleY(0.045px);
    letter-spacing: 0.5px;
    background: #deecff;
}
::placeholder{
    opacity: 0.6;
    color: #0b1167;
    letter-spacing: 0.5px;
    transform: scaleY(0.045px);
}
.btn-todo{
    font-size: 22px;
    padding: 6px 26px;
    border-style: none;
    border-radius: 12px;
    background: #01022e;
    color: rgb(231, 251, 255);
    border-left: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    border-top: 0.01px solid #ffffff;
    border-bottom: 0.01px solid #ffffff;
}
.todos-stast{
    display: flex;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;

    color: white;
    width: 520px;
    margin-top: 50px;
    border-radius: 8px;
    padding: 10px 12px;
    border-top: 0.5px solid #fff;
}
.badge{
    padding: 2px 6px;
    border-radius: 20px;
    background-color: #131b87;
}
.todos-wrapper{
    /* background: #ffffff98; */
    width: 500px;
    margin: auto;
    margin-top: 20px;
}
.todos-list{
    display: flex;
    flex-direction: column;
    /* background: #d66868; */
    list-style: none;
    gap: 12px;
}
.todo-item{
    display: flex;
    align-items: center;
    background: #c8dfff;
    border-radius: 8px;
    padding: 7px 12px;
    gap: 10px;
    flex-wrap: wrap;
    transition: 0.2s ease-in-out;
}
.check-todo{
    width: 22px;
    height: 22px;
    border: 1px solid #01022e;
    border-radius: 50%;
    background: #fff;
    color: white;
}
.text-todo{
    flex: 1;
}
.delete-todo{
    border: none;
    background: none;
    font-size: 16px;
    opacity: 0;
    transition: 0.2s ease-in-out;
    /* transform: scale(0.8); */
}
.check-todo.done{
    background: #0b1167;
    border: 1px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
}


.todo-item {
    background-color: #c8dfff;
    transition: 0.2s;
}

.todo-item:hover {
    background-color: #c8dfffd6;
    transform: scale(0.986);
}

.delete-todo {
    opacity: 0;
    transition: 0.2s;
}

.todo-item:hover .delete-todo {
    opacity: 1;
}