.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px; 
  width: 350px; 
  gap: 20px; 
  border-radius: 8px; 
  box-shadow: rgba(255, 255, 255, 0.35) 0px 5px 15px,
              rgb(255, 75, 195) 5px 10px 15px;
}

.button {
  outline: 0;
  border: 0;
  width: 35px; 
  height: 35px; 
  border-radius: 50%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px; 
  transition: all ease-in-out 0.3s;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-3px); 
  color: black;
  background-color: #fff;
}

.icon {
  font-size: 22px; 
}
