* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 100%;
}

body {
    background-color: aliceblue;
}

.wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    /* border: 1px solid red; */
    /* width: 100%; */
    padding: 2rem;
}


.container form input,
.container form button {
    padding: 0.8rem;
}

.container form input {
    background-color: transparent;
    border: none;
    border-bottom: 2px solid #110f29;
    width: 300px;
    margin-right: 1rem;
}
 .form input:focus{
    outline: none;
    border-bottom-color: #7f19e6;
}


.container form button {
    background-color: #7f19e6;
    border: none;
    width: 100px;
    cursor: pointer;
    border-radius: 0.3rem;
}
.container form button:hover{
    opacity: 0.95;
}

.tasks{
    margin-top:0.8rem ;
    padding: 0.5rem;
    /* border: 1px solid red; */
}
ul{
    list-style: none;
}
li:before{
    margin-right: 10px;
    content: '✓';
    cursor: pointer;
}
.list-items-typo{
    font-size: 1.3rem;
    font-weight: 400;
    text-transform: uppercase;
}
.list-items:not(:first-child){
    margin-top: .3rem;
}

.error{
    display: none;
    position: absolute;
    color: red;
    transform: translateY(-1px);
}


@media screen and (max-width: 480px) {
    body {
      background-color: #FFF7FC;
    }
    .wrapper{
        display: block;
    }
   

    .btn{
        margin-top: 1rem;
       
    }
  }