.header-bar {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
  z-index: 10;
}

.header-bar .logo {
  position: absolute;
  top: 0;
  left: 0;
  background: transparent;
}

#search-input {
  width: 525px;
  height: 36px;
  opacity: 1;
  border-radius: 32px;
  padding: 6px 16px;
  border: 2px solid #d1d5db;
  color: #ffffff;
  background-color: transparent;
}

#search-input::placeholder {
  color: #ffffff;
}

#search-input:focus {
  outline: none;
  background-color: transparent;
}

.search-box {
  display: inline-block;
  position: relative;
  width: 525px;
}
.search-box input {
  width: 100%;
}
.search-box button {
  position: absolute;
  text-indent: -10000px;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: url("../images/search.png") center center no-repeat;
}

/* 테블릿 */
@media (max-width: 1023px) {
  .header-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .header-bar .logo {
    position: static;
  }

  .search-box {
    width: 100%;
    max-width: 525px;
  }
}

/* 모바일 */
@media (max-width: 767px) {
  .search-box {
    width: 100%;
    max-width: 280px;
    position: relative;
  }

  #search-input {
    width: 100%;
    padding-right: 44px;
  }

  .search-box button {
    right: 8px;
  }
}
