body{
    background-color: rgba(72, 163, 0, 0.07);
  font-family: "Poppins", sans-serif;
  margin: 0;
  box-sizing: border-box;

}
main{
  padding:0 16px;
}
.title{
  font-size:4rem ;
  color: rgba(72, 163, 0, 1);
  text-align: center;
}
.title > span{
  color:rgba(97, 72, 28, 1) ;
}
.app-container{
  max-width: 660px;
max-height: 810px;
border-radius: 15px;
background-color: rgba(251, 251, 251, 1);
margin-inline: auto;
padding: 32px 43px 32px 42px;
box-shadow: 0 0 10px 5px rgba(0, 0 , 0, 0.1);

}
.sun-icon{
  vertical-align: middle;
  margin-left: 16px;
 transform-origin: center;          
 will-change: transform;            
  animation: spin 3s linear infinite;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.sun-eye1{
  position: absolute;
    top: 147px;
    left: 158px;
}
.sun-eye2{
  position: absolute;
    top: 147px;
    left: 167px;

}

.sun-mouth{
  position: absolute;
    top: 154px;
    left: 160px;
}
.progress-label{
color: rgba(133, 133, 133, 1);
  font-size: 14px;
  margin-bottom: 20px;
}


.progress-bar{
  height: 30px;
  background-color: rgba(72, 163, 0, 0.1);
  border-radius: 15px;
}

.progress-value{
    height: 100%;
    width: 66%;
  background-color: rgba(72, 163, 0, 1);
  border-radius: 15px;
  font-weight: 500;
  font-size: 10px;
  display: flex;
  align-items: center;
  padding-left: 20px;
  color:rgba(238, 255, 224, 1) ;
  width: 0;
  overflow: hidden;
  transition: width 0.2s ease-in;
}
.progress-value span{
padding-left: 20px;
min-width: max-content;

}
.error-label{
  font-size: 14px;
  color: rgba(255, 81, 81, 1);
  margin-block: 20px;
}

.goal-container{
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 17px;
  height: 82px;
  display: flex;
  align-items: center;
  padding: 0 22px;
  background-color: rgba(255, 255, 255, 1);
  margin-bottom: 34px;

  
}

.custom-checkbox{
  height: 20px;
  width: 20px;
 border: 2px solid rgba(97, 72, 28, 0.3);
 border-radius: 50%;
 /* margin: 0 22px; */
 flex-shrink: 0;
 cursor: pointer;
 display: flex;
 align-items: center;
 justify-content: center;

}

.check-icon{
  display: none;
}
.goal-input{
  border: none;
  background-color:rgba(255, 255, 255, 1) ;
  margin-left: 8px;
  /* flex-grow: 1; */
  /* height: 90%; */
  align-self: stretch;
  width: 100%;
  font-weight: 500;
  outline: none;
}

.goal-input::placeholder{
  font-weight: 500px;
  font-size: 16px;
  color: rgba(217, 217, 217, 1);
}

.quote{
  font-family: inherit;
  font-weight: 500;
  font-size: 16px;
text-align: center;
margin-bottom: 48px;
}

.madeby{
font-weight: 500;
font-size: 10px;
text-align: center;
color: rgba(133, 133, 133, 1);
}

.completed .custom-checkbox{
background-color: rgba(72, 163, 0, 1);
border-color: rgba(72, 163, 0, 1);

}
.completed .check-icon{
  display: block;
  

}
.error-label{
  opacity: 0;
}
.error-label1{
  opacity: 1;
}

.completed .goal-input{
  color: rgba(72, 163, 0, 1);
  text-decoration: line-through;
}


.one-done {
width: 33%;
}
.two-done{
width: 66%;
} 
.three-done{
width: 100%;
}



@media(max-width: 700px){
  .title{
  font-size:2rem ;

}
.app-container{
   padding: 16px 24px 6px 24px; 
}

.goal-container{
  height: 64px;
 margin-bottom: 16px;
}
.custom-checkbox{
  height: 16px;
  width: 16px;
}
.quote{
  margin-bottom: 16px;
}
.progress-bar{
  height: 24px;
}
}