.search-box {
  position: relative;
  margin: -20px auto 10px;
  padding: 5px 10px;
  width: 90%;
  border-radius: 25px;
  border: 1px solid #ffc939;
  display: flex;
  align-items: center;
  background: transparent;
  color: #ffc939;
}

.search-box i {
  color: #ffc939;
  margin: 0 10px;
  font-size: 18px;
}

.search-box input {
  border: none;
  outline: none;
  background: transparent;
  flex: 1;
  font-size: 16px;
  color: #fff;
}

.search-bnt {
  padding: 5px 10px;
  border: none;
  background: transparent;
  color: #ffc939;
  border-radius: 15px;
  cursor: pointer;
  font-size: 12px;
  transition: background-color 0.1s;
  margin-left: 8px;
}

.search-bnt:hover {
  background: #ffc939;
  color: #fff;
}

.separator {
  margin: 0 4px;
  color: #ffc939;
}