.search-form {
  position: relative;
  width: 100%;
}
.search-form input {
  padding: 12px 50px 12px 10px;
  width: 100%;
  font-family: "soleil", sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #2d2d2d;
  border: 0;
  border-bottom: 1px solid #2d2d2d;
}
@media only screen and (max-width: 767px) {
  .search-form input {
    padding: 10px 40px 10px 5px;
    font-size: 14px;
  }
}
.search-form input::placeholder {
  color: #2d2d2d;
}
.search-form button {
  padding-top: 10px;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 100%;
  font-size: 16px;
  color: #005391;
  border: 0;
  background: transparent;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .search-form button {
    width: 30px;
  }
}
