* {
  box-sizing: border-box;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/InterRegular.woff2");
  font-display: swap;
  font-weight: 400;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/InterMedium.woff2");
  font-display: swap;
  font-weight: 500;
}

body {
  margin: 0;
  padding: 20px;
  font-family: "Inter", sans-serif;
  background: #f3f4f6;
}

.search-panel {
  display: flex;
  align-items: center;
  margin: 0 auto;
  max-width: 1080px;
  border: 1px solid #e5e7eb;
  border-radius: 32px;
  padding: 16px;
  background: #fff;
  gap: 12px;
}

.search-panel__label {
  position: relative;
  flex: 1;
}

.search-panel__icon {
  position: absolute;
  left: 16px;
  top: 50%;
  width: 20px;
  height: 20px;
  stroke: #6B7280;
  translate: 0 -50%;
}

.search-panel__input {
  border: 1px solid #edf2f7;
  border-radius: 16px;
  padding-left: 48px;
  padding-right: 16px;
  width: 100%;
  height: 56px;
  font-family: inherit;
  font-weight: 400;
  font-size: 16px;
  color: #6b7280;
  background: #f9fafb;
}

.search-panel__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 16px;
  padding: 16px;
  font-family: inherit;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
  gap: 4px;
}

.search-panel__btn svg {
  display: block;
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

.search-panel__btn--filters {
  color: #2563eb;
  background: #eef2ff;
}

.search-panel__btn--upload {
  color: #fff;
  background: #111827;
}

.search-panel__btn--filters:hover {
  background: #cad1e8;
}

.search-panel__btn--upload:hover {
  background: #2e3c5b;
}
