.content.search {
  padding-top: 42px !important;
  width: 100%;
  max-width: 428px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.search-tab-box {
  width: 100%;
  display: flex;
  position: relative;
  border-bottom: 1.5px solid #ffe0ea;
  margin-bottom: 24px;
}
.search-tab {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 600;
  color: #bbb;
  padding: 18px 0 10px 0;
  cursor: pointer;
  transition: color 0.2s;
  position: relative;
}
.search-tab.active {
  color: var(--color-main);
}
.search-tab-bar {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 50%;
  height: 2.5px;
  background: var(--color-main);
  border-radius: 2px;
  transform: translateX(-50%);
  pointer-events: none;
  transition: left 0.2s;
  display: none;
}
.search-form-box {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}
.search-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.search-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.search-input {
  width: 100%;
  padding: 14px 12px;
  font-size: 15px;
  border: 1.5px solid #eee;
  border-radius: 8px;
  background: #fafafa;
  color: #222;
  box-sizing: border-box;
  outline: none;
  transition: border 0.2s;
}
.search-input:focus {
  border: 1.5px solid var(--color-main);
  background: #fff;
}
.search-desc {
  font-size: 12px;
  color: var(--color-main);
  margin-left: 4px;
}
.search-btn {
  width: 100%;
  background: #eee;
  color: #bbb;
  font-size: 17px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  padding: 15px 0;
  margin-top: 18px;
  cursor: not-allowed;
  transition: background 0.2s;
}
.search-btn.active,
.search-btn:enabled {
  background: var(--color-main);
  color: #fff;
  cursor: pointer;
}

#copy-btn{right: 3rem}
@media (max-width: 428px) {
  .content.search {
    max-width: 100vw;
  }
  .search-form-box {
    max-width: 96vw;
  }
  #copy-btn{right: 2rem}
}

