@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&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&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/* GENERAL */
body{
  font-family: "Hanken Grotesk";
  margin: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.container{
  display: grid;
  grid-template-columns: 350px 350px;
}

/* CONTENT LEFT */
.left{
  width: 100%;
  border: none;
  outline: none;
  border-radius: 30px;
  text-align: center;
  background: linear-gradient(
    to top,
    hsl(241, 81%, 54%) 30%,
    hsl(252, 100%, 67%)
  );
  position: relative;
}
.left .item .result{
  color: rgba(255, 255, 255,0.7);
  margin-top: 40px;
}
.left .item .circle{
  width: 150px;
  height: 150px;
  background: linear-gradient(
    to bottom,
    hsla(256, 72%, 46%, 1),
    hsla(241, 72%, 46%, 0)
);
  border: none;
  border-radius: 50%;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
 }
 .left .item .circle .number{
  color: #fff;
  font-size: 3rem;
  margin-top: 20%;
  font-weight: bold;
 }
 .left .item .circle .total{
  margin-top: -5px;
  color: rgba(255, 255, 255, 0.5);
  font-size: .8rem;
 }
 .left .item .feedback{
  margin-top: 60%;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
 }
 .left .item .comparison {
  color: rgba(255, 255, 255, 0.7);
  width: 200px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  line-height: 1.4;
  padding: 5px;
  margin-left: 76px;
  text-transform: capitalize; 
}

/* CONTENT RIGHT */

 .right{
  width: auto;
  height: 100%;
  border: none;
  outline: none;
  background: #fff;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  text-align: center;
  position: relative;
  box-shadow: 0 5px 10px #bbbbbb;

}
.right .list .summary{
 font-weight: bold;
}

.right .item .reaction,
.right .item .memory,
.right .item .verbal,
.right .item .visual,
.right .item .social{
 display: flex;
 justify-content: space-between;
 margin-top: 12px;
 margin-left: 20px;
 width: 70%;
 height: 20px;
 padding: 10px 5px;
 width: auto;
 margin-right: 20px;
 border-radius: 6px;
}
.right .item p{
  transform: translateY(-16px); /* for align to center of div */
}
.right .item img{
  width: 15px;
  height: 15px;
  transform: translateY(3px);
  margin-right: 10px;
}
.right .item .reaction{
  background: rgba(255, 87, 87, 0.3);
}
.right .item .memory{
 background: hsla(39, 100%, 56%, 0.3);
}
.right .item .verbal{
background: hsla(166, 100%, 37%, 0.3);
}
.right .item .visual{
background: hsla(234, 85%, 45%, 0.3);
}
.right .item .social{
  background: hsla(210, 85%, 45%, 0.3);;
}
/* FOR INPUT (FUNCTIONALITY) */
input{
  width: 38px;
  height: 20px;
  background: transparent;
  border: .4px solid #fff;
  outline: none;
  margin-right: -70px;
  font-family: Inter;
}
.memory input{
  transform: translateX(-3px);  /* ITS NOT PLACEED ALIGN WITH OTHERS BECAUSE OF THE BUTTON TEXT LENGTH SO I USED */ 
}
.visual input{
  transform: translateX(-4px);
}

/* evaluate button */
.right button{
  position: absolute;
  width: 150px;
  border: none;
  border-radius: 20px;
  padding: 10px 80px;
  background: linear-gradient(
    to bottom,
    hsla(256, 72%, 46%, 1),
    hsla(241, 72%, 46%, 1)
);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  cursor: pointer;
  }

  /* media quaries */

  @media screen and (max-width: 678px) {
    .container{
      margin-top: 10%;
      display: grid;
      grid-template-columns: 350px;
      grid-template-rows: auto 400px;
      padding-left: 5px 5px 5px 5px;
      height: 95vh;
    }
  }