.input-box {
  position: relative;
  height: 46px;
  max-width: 250px;
  width: 100%;
  background: #fff;
  margin: 10px 20px;
  border-radius: 8px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.input-box i,
.input-box .button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.input-box i {
  left: 20px;
  font-size: 30px;
  color: #707070;
}
.input-box input {
  height: 100%;
  width: 100%;
  outline: none;
  font-size: 18px;
  font-weight: 400;
  border: none;
  padding: 0 100px 0 65px;
  background-color: transparent;
}
.input-box .button {
  right: 10px;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  border: none;
  padding: 5px 20px;
  border-radius: 6px;
  background-color: #4070f4;
  cursor: pointer;
}
.input-box .button:active {
  transform: translateY(-50%) scale(0.98);
}
/* Responsive */
@media screen and (max-width: 500px) {
  .input-box {
    height: 36px;
    margin: 0 8px;
  }
  .input-box i {
    left: 10px;
    font-size: 20px;
  }
  .input-box input {
    padding: 0 112px 0 50px;
  }
  .input-box .button {
    right: 12px;
    font-size: 12px;
    padding: 4px 10px;
  }
}