body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  padding-bottom: 75px;
}
.search-container {
  box-sizing: border-box;
  max-width: 736px;
  width: 90%;
  margin-left: 20px;
  margin-right: 20px;
}
@media (max-width: 480px) {
  .search-container {
      margin-left: 10px;
      margin-right: 10px;
  }
}
.search-container form{
  height: 44px;
}
.form-control {
  border-radius: 44px 0 0 44px;
}
.btn-search {
  border-radius: 0 44px 44px 0;
  width: 120px;
}