*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Helvetica, sans-serif;
}
body{
    height: 100vh;
    display: grid;
    place-content: center;
    background: linear-gradient(to bottom, #333602, #8b8989);  
}

li{
    list-style: none;
}
.container{
    width: 350px;
    background-color: transparent;
    padding: 20px;
    border: 2px solid  rgba(250, 250, 250, .2);
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    height: 700px
    px;
    color: #dfddda;
    backdrop-filter: blur(30px);
}
.logo{
    width: 50px;
    margin-bottom: -60px; 
}

h1{
    font-size: 15px;
    font-weight: 400px;
    color: #afabaf;
    text-align: center;
    margin-bottom: 30px;
}
form{
    display: flex;
    align-items: center;
    margin: 10px 0;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
form input{
    width: 400%;
    padding: 11px;
    border-radius: 5px 0 0 5px;
    outline: none;
    color: #473805;
    border-radius: 10px;
    font-weight: 600;
    
     
}
form input:hover{
    background-color: transparent;
    border: 2px solid rgba(250, 250, 250, .2);
    color: #fff;
    transition: .3s;

}
form button{
  width: 100%;
  padding: 11px;
  border-radius: 0 5px 5px 0;
  background: linear-gradient(to bottom, #333602, #d0d0d0);
  border: none;
  color: #fff;
  cursor: pointer;
}
form button:hover{
    background: linear-gradient(to bottom, #d0d0d0, #434703);
    transition: .3s;
}
li{
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 7px;
}
.delete{
    cursor: pointer;
    font-size: 19px;
}
.check{
    margin-right: 10px;
}

@media screen and (max-width: 1020px){
    .container{
        width: 300px;
    }
    form input{
        width: 300%;
    }
}
    
