*{
    box-sizing: border-box;
}
body{
    font-family: poppins;
    background-color: rgba(72, 163, 0, 0.07);
    margin: 0px;
}
main{
    padding:0px 16px 32px;
    
    
    
}
.title{
    font-size: 64px;
    color: #48A300;
    text-align: center;
}

.title span{
    color: #61481C;

}


.app-container{
    background-color: #FBFBFB;
    max-width: 660px;
    margin-inline: auto;
    border-radius: 15px;
    padding: 42px 32px;
    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.1);
}

.subtitle img{
    vertical-align: middle;
}

.progress-label{
    font-size: 14px;
    color:  #858585;
    margin-bottom: 18px;
    
}

.progress-bar{
    height: 30px;
    background-color: rgba(72, 163, 0, 0.1);
    border-radius: 15px;
    margin-bottom: 1.8rem;
}

.progress-value{
    height: 100%;
    background-color: #48A300;
    width:0%;
    border-radius: 15px;
    font-weight: 500;
    font-size: 10px;
    color: white;
    display: flex;
    align-items: center;
    transition: all 0.4s ease-in-out;
    /* padding-left: 20px; */
    width: max-content;
}

.error-label{
    font-size: 14px;
    color: #ff5151;
    position: absolute;
    display: none;

}



.show-error .error-label{
    display: block;
   
}

.goal-container{
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 17px;
    height: 82px;
    display: flex;
    align-items: center;
    padding-inline:22px;
    background-color:white;
    margin-bottom: 44px;
   
  
}

.custom-checkbox{
    height: 24px;
    width: 24px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius:50% ;
    flex-shrink:0 ;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
   

   
}
.check-icon{
    display: none;
}

.goal-input {
    margin-left: 5px;
    border: none;
    padding-left: 22px;
    font-family: inherit;
    font-size: 16px;
    outline: none;
    /* flex-grow: 1; */
    width: 100%;
    height: 100%;
    font-weight: 500;
    /* background-color: pink; */
    
    
}

.goal-input::placeholder{
    color: #D9D9D9;
}


.quote{
    font-weight: 500;
    text-align: center;

}

.made-with{
    font-weight: 500;
    font-size: 10px;
    color: #858585;
    text-align: center;
}



.completed .custom-checkbox{
    background-color: #48A300;
    border-color: #48A300;
}

.completed .check-icon{
    display: block;
}

.completed .goal-input{
    color: #48A300;
    text-decoration: line-through;
}







@media (max-width:768px) {
    .title{
        font-size: 32px;
    }

    .app-container{
        padding: 16px 32px;
    }
    .goal-container{
        height: 64px;
        margin-bottom: 24px;
        border-radius: 14px;
    }

    .custom-checkbox{
        height: 20px;
        width: 20px;
    }

    .progress-bar{
        height: 22px;
    }
}













