.search-bar {
    width: 100%;
    border: 1px solid #94105c;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(to right, #94105c, #D3C5E5);
    box-shadow: 3px 3px 7px #94105c;
  }
  .search-bar input::placeholder {
    color: #fff;
    font-size: 16px;
}  
  .search-bar input {
    border: none;
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 16px;
    background: transparent;
    color: white;
  }
  
  .search-bar button {
    border: none;
    border-radius: 30px;
    background-color: #1E2761;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    transition: background-color 0.3s;
  }
  
  .search-bar button:hover {
    background-color: #101848;
  }
  