.header__search-btn {
  width: 500px;
  height: 48px;
  background-color: #090f29;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border: none;
  position: relative;
  padding-left: 60px;
  clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0 50%);
  cursor: pointer;
}

.header__search-btn::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-image: url('https://i.imgur.com/1JPOu56.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.header__search-btn svg {
  display: none !important;
}
