*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.container{
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(10deg,#44215d 35%,#e000b0a9);
    padding: 10px;
}           
.todo-app{
    width: 100%;
    max-width: 540px;
    background: linear-gradient(10deg,#f2afe6 20%,#ff9aed);
    margin: 50px auto 20px ;
    padding: 40px 30px 70px;
    border-radius: 10px;
}
.todo-app h2{
    color: #022048;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    margin-left: 10px;
    gap: .7rem;
}
.todo-app h2 img{
    width: 30px;
}

/* input section  */
.row{
    background-color: #44215d;
    padding-left: 20px;
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.row input{
    border: none;
    outline: none;
    background: transparent;
    flex: 1;
    font-size: 18px;
    color: white;
}
.row input::placeholder{
    color: #93accc;
}
.row button{
    border: none;
    outline: none;
    background-color: #db09b5;
    padding: 13px 38px;
    border-radius: 30px;
    color: #fffaff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}
ul li{
    list-style: none;
    font-size: 20px;
    padding: 13px 8px 12px 50px;
    user-select: none;
    cursor: pointer;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}
ul li::before{
    position: absolute;
    content: '';
    background-image: url(./Assets/unchecked.svg);
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    left: 10px;
    top: 13px;
    opacity: 0.4;
    
}
ul li.checked{
    color: #022048;
    opacity: 0.6;
    text-decoration: line-through;
    position: relative;
}
ul li.checked::before{
    background-image: url(./Assets/checked.svg);
}

/* styling remove icon  */
ul li span{
    position: absolute;
    right: 0;
    top: 10px;
    width: 33px;
    height: 33px;
    font-size: 23px;
    color: #e7e7e7  ;
    text-align: center;
    border-radius: 50%;
    background-color: #da1fb8;
    
}
