.box {
  width: 200px;
  height: 200px;
  background: pink;
  transition: 0.3s;
}

.box:hover {
  transform: scale(1.1);
  background: hotpink;
}
.product-img {
  transition: transform 0.3s ease;
}

.product-img:hover {
  transform: scale(1.05);
}
button {
  background-color: #c2185b;
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 5px;
}

button:hover {
  background-color: #a3154a;
}

button {
  background-color: #c2185b;
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 5px;
}

button:hover {
  background-color: #a3154a;
}
input, select, textarea {
  width: 60%;
  padding: 8px;
  margin: 8px auto;
  display: block;
  border: 1px solid #ccc;
  border-radius: 5px;
}
form {
  text-align: center;
}