.search-container {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  width: 100%;
  margin-bottom: 10px;
}

.search-box {
  position: relative;
  align-items: center;
}

.search {
  box-sizing: border-box;
  padding: 16px 16px 20px 50px;
  border-radius: 32px;
  width: 100%;
  max-width: 400px;
  border: 1px solid #a6a6a6;
  outline: none;
  font-size: 18px;
}
.search:focus {
  border-color: #922424;
  box-shadow: 0 0 5px rgba(146, 36, 36, 0.5);
}

.search-icon {
  position: absolute;
  left: 20px;
  top: 16px;
  pointer-events: none;
}
