.rs-service-search-form {
  display: flex;
  align-items: center;
  background: #c11f4a;
  padding: 40px;
  gap: 10px;
  border-radius: 10px;
  box-shadow: 0px 0px 40px 5px rgba(22, 43, 98, 0.35);
}

.rs-service-search-form .search-wrap {
  display: flex;
  align-items: center;
  width: 64%;
  max-width: 770px;
  gap: 10px;
}

.rs-service-search-form .search-input {
  width: 100%;
  max-width: 558px;
  padding: 22px 30px;
  border-radius: 4px;
}

.rs-service-search-form .label-area {
  width: 36%;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #fff;
}

.rs-service-search-form .label-area i {
  margin-right: 8px;
}

.rs-service-search-form ::-webkit-input-placeholder { /* Edge */
  font-size: 22px !important;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.rs-service-search-form :-ms-input-placeholder { /* Internet Explorer 10-11 */
  font-size: 22px !important;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.header-search input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  font-size: 15px !important;
}

.header-search input::-moz-placeholder { /* Firefox 19+ */
  font-size: 15px !important;
}

.header-search input:-ms-input-placeholder { /* IE 10+ */
  font-size: 15px !important;
}

.header-search input:-moz-placeholder { /* Firefox 18- */
  font-size: 15px !important;
}

.rs-service-search-form button {
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0px !important;
  border-radius: 4px;
  background: #071230;
  padding: 12px 0px;
  width: 100%;
  max-width: 199px;
  height: 68px;
  color: #FFF;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
}

.rs-service-search-form button i {
  top: 0px;
}

.rs-service-search-form input[type=search] {
  border: 0px solid #fff;
}

.rs-service-search-form.primary_color .search-wrap button {
  background: #c11f4a;
  color: #ffffff;
}
.rs-service-search-form.primary_color .search-wrap button:hover {
  background: #162b62;
  color: #071230;
}
.rs-service-search-form.secondary_color .search-wrap button {
  background: #162b62;
  color: #071230;
}
.rs-service-search-form.secondary_color .search-wrap button:hover {
  background: #c11f4a;
  color: #ffffff;
}

@media only screen and (max-width: 880px) {
  .rs-service-search-form .label-area {
    width: 100%;
    text-align: center;
  }
  .rs-service-search-form .search-wrap {
    width: 100%;
    margin-top: 20px;
  }
  .rs-service-search-form {
    flex-direction: column;
  }
}