body {
   
  margin: 0;
}
* {
  box-sizing: border-box;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.container {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    rgb(255, 201, 210),
    rgba(255, 239, 242, 0.397)
  );
  position: relative;
   padding: 20px 0; 
  box-sizing: border-box;
}
.box {
 margin: 30px auto;
  background-color: white;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  padding: 20px 30px;
  box-sizing: border-box;
}
.box h3 {
  margin: 0;
  margin-bottom: 15px;
  margin-left: 10px;
}
.box form {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.box form input {
  height: 40px;
  padding: 10px 20px;
  border: 0;
  border-radius: 20px;
  
}
.box form input[type="text"] {
  flex: 1;

  outline: 0;
  background-color: rgb(233, 233, 233);
}
.box form input[type="text"]::placeholder {
  font-size: 12px;
  transition: 0.3s;
}
.box form input[type="text"]:focus::placeholder {
  opacity: 0;
}
.box form input[type="submit"] {
  cursor: pointer;
  margin-left: -100px;
  width: 100px;
  color: white;
  background-color: pink;
  outline: 2px solid white;
  transition: 0.3s;
}
.box form input[type="submit"]:hover {
  background-color: rgb(253, 174, 187);
}

.box .checkbox {
  display: flex;
  align-items: center;
  margin-left: 30px;
}
.box .checkbox input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
}
.box .checkbox label {
  position: relative;
  cursor: pointer;
  margin-bottom: 20px;
   word-break: break-word;
  width: 270px;
}


 .box .checkbox label::before,
.box .checkbox label::after {
  border-radius: 50%;
  position: absolute;
}

.box .checkbox label::before {
  content: " ";
  top: 0;
  left: -25px;
  border: 2px solid pink;
  width: 15px;
  height: 15px;
}

.box .checkbox input[type="checkbox"]:checked + label::after {
  font-family: var(--fa-style-family-classic);
  content: "\f00c";
  font-weight: 900;
  color: white;
  background-color: pink;
  width: 12px;
  height: 12px;
  top: 3px;
  left: -22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
}
.box .checkbox input[type="checkbox"]:checked + label {
  text-decoration: line-through;
} 


.box .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.box .row i {
  border-radius: 50%;
  padding: 5px 7px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.3s;
}
.box .row i:hover {
  background-color: pink;
  color: white;
}

.stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.star {
  position: absolute;
  font-size: 20px; /* size of the ✦ */
  color: white;
  opacity: 0.9;
  user-select: none;
}

@media (max-width:768px) {
    .box {
        width: 300px;
        
    }
    .box .checkbox label {
        width: 180px;
    }
      body {
    font-size: 14px;
  }
}