.dreambig-search-bar {
  display: flex;
  justify-content: center;
  margin: 40px auto;
  max-width: 1000px;
}
.dreambig-search-bar form {
  display: flex;
  background: white;
  padding: 10px;
  border-radius: 40px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  gap: 10px;
  width: 100%;
}
.dreambig-search-bar select,
.dreambig-search-bar input {
  border: none;
  outline: none;
  padding: 12px 16px;
  border-radius: 30px;
  flex: 1;
  background: #f9f9f9;
}
.dreambig-search-bar button {
  padding: 12px 20px;
  border-radius: 30px;
  border: none;
  background-color: #1a2d5a;
  color: white;
  cursor: pointer;
}
.dreambig-search-bar button:hover {
  background-color: #0f1e3f;
}
@media(max-width:768px){
  .dreambig-search-bar form {
    flex-direction: column;
    border-radius: 20px;
  }
}