html, body {
  background: #FFFFFF;
  display: grid;
  place-items: center;
  height: 100vh;
  font-family: sans-serif;
  font-size: 16px;
}

a {
  color: #3189c1;
}

a:hover {
  color: #3189c1;
}

.input-container {
	display: flex;
}

::placeholder {
  color: #757575;
  opacity: 1;
}

.search-input {
  background: #EEEEEE;
  color: #212121;
	vertical-align: middle;
  font-size: 16px;
  line-height: 2;
  padding: 10px 20px;
  border: 0;
  outline: none;
  box-shadow: inset 0 -1px 1px -1px #CCCCCC, inset 0 1px 1px -1px #CCCCCC, inset 1px 0 1px -1px #CCCCCC;
  width: 480px;
}

.search-submit {
  background: #3189c1;
  color: #FFFFFF;
	vertical-align: middle;
  padding: 0 20px;
  border: 0;
  outline: none;
  cursor: pointer;
  width: 60px;
}

.search-submit:hover {
  background: #3189c1;
}

.search-submit i {
  font-size: 24px;
}

@media only screen and (max-width: 768px) {
  .search-input { width: 200px;}
  .box-shadow { min-width: 200px;}
}
