#topbar {
  background: #000;
  background: linear-gradient(323deg, #1d3329, #000000 100%);
  border-bottom: 1px dashed #2fe28a;
  padding: 10px 0;
  position: relative;
  z-index: 2;
}

#topbar .wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

#logo {
  color: #fff;
  font-size: 22px;
  font-weight: bold;
}

#topbar nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 14px;
}

#topbar nav a, #topbar nav .linklike {
  color: #9fb6c2;
  font-weight: bold;
  font-size: 14px;
}

#topbar nav a.active {
  color: #fff;
  text-decoration: underline;
}

#topbar .signupbtn {
  background: #2fe28a;
  color: #062919;
  padding: 5px 12px;
  border-radius: 4px;
}

#topbar .linklike {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
}

#searchform {
  position: relative;
  display: flex;
  align-items: center;
}

#searchform .search-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  color: #7e8d97;
  pointer-events: none;
}

#searchform input {
  border: 1px solid #2f3b44;
  background: #192734;
  color: #d9d9d9;
  border-radius: 12px;
  padding: 5px 10px 5px 28px;
  width: 180px;
}

@media (max-width: 600px) {
  #topbar .wrap {
    flex-wrap: wrap;
    gap: 10px 12px;
  }

  #logo {
    font-size: 20px;
  }

  #searchform {
    order: 3;
    flex: 1 1 100%;
  }

  #searchform input {
    width: 100%;
  }

  #topbar nav {
    gap: 12px;
    flex-wrap: wrap;
  }
}
