/* Center search box inside column */
.banner-search{
  position: relative;
  max-width: 520px;
  margin-top: 25px;
}

/* Input */
.banner-search input{
  width: 100%;
  height: 60px;
  border-radius: 50px;
  padding: 0 65px 0 25px;
  border: none;
  outline: none;
  font-size: 15px;
}

/* Button INSIDE input */
.banner-search button{
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg,#3f87ff,#1e4fff);
  color: #fff;
  border: none;
  cursor: pointer;
}

/* Hover effect */
.banner-search button:hover{
  box-shadow: 0 8px 20px rgba(63,135,255,.45);
}
