@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
body{
    /* background-color: rgba(72, 163, 0, 0.07); */
    background-color: #FFE6A9;
}
main{
    padding: 0 16px 32px;
}
.title{
    font-size: 50px;
    color: #48A300;
    text-align: center;
    margin: 22px 22px;
}
.title span{
    color: #61481C;
}
.app-container{
    background-color: #FBFBFB;
    max-width: 660px;
    margin: 0 auto;
    border-radius: 15px;
    padding: 32px 42px;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 48px;
}
.app-container img{
    width: 45px;
}
.sun-container{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.subtitle{
    font-size: 23px;
    padding-right: 14px;
}
.progress-label{
    font-size: 14px;
    color: #858585;
    margin-bottom: 20px;
}
.progress-bar{
    height: 30px;
    background-color: rgba(72, 163, 0, 0.1);
    border-radius: 15px;
    margin-bottom: 36px;
}
.progress-value{
    height: 100%;
    width: 0%;
    background-color: #48A300;
    border-radius: 15px;
    color: white;
    font-size: 10px;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: 0.5s ease-in-out;
    overflow: hidden;
}
.progress-value span{
    padding-left: 20px;
    min-width: max-content;
}
.error-label{
    color: #FF5151;
    font-size: 12px;
    margin-top: 8px;
    display: none;
}
.goal-container{
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 17px;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 42px;
}
.custom-checkbox{
    height: 22px;
    width: 22px;
    border: 2px solid rgba(97, 72, 28, 0.3);
    background-color: transparent;
    border-radius: 50%;
    flex-shrink: 0;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
.custom-checkbox .check-icon{
    width: 13px;
    display: none;
}
.goal-container input{
    height: 100%;
    width: 100%;
    border: none;
    background-color: transparent;
    /* background-color: pink; */
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 500;
    outline: none;
    padding-left: 16px;
}
.goal-container input::placeholder {
    color: #c8c8c8;
}
.quote{
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}
.made-with{
    font-size: 10px;
    font-weight: 500;
    color: #858585;
    text-align: center;
    margin-top: 44px;
}
.completed .custom-checkbox{
    background-color: #48A300;
    border-color: #48A300;
}
.completed .check-icon{
    display: block;
}
.completed input{
    color: #48A300;
    text-decoration: line-through;
}
.show-error .error-label{
    display: block;
}