verdocs-search-box {
  font-family: var(--verdocs-primary-font, "Inter", "Barlow", sans-serif);
}
verdocs-search-box form {
  display: flex;
  flex-direction: row;
  height: 45px;
  box-sizing: border-box;
  margin: 5px 0 0;
  border-radius: 5px;
  align-items: center;
  background-color: #fff;
  padding: 0 8px;
  border-width: 1px;
  border-style: solid;
  border-color: #707ae5;
}
verdocs-search-box form input {
  box-sizing: border-box;
  height: 43px;
  width: 100%;
  font-size: 18px;
  border: none;
}
verdocs-search-box form input:focus {
  outline: none;
}
verdocs-search-box form button.search {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border-radius: 4px;
  border: none;
  width: 100px;
  height: 28px;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 1px;
  background-color: #55bc81;
  text-transform: uppercase;
  color: #fff;
}
verdocs-search-box form .type {
  background-color: #707ae5;
  height: 30px;
  display: inline-flex;
  padding: 1px 0 2px 10px;
  font-size: 13px;
  line-height: 16px;
  border-radius: 4px;
  justify-content: center;
  text-transform: uppercase;
  align-items: center;
  flex-direction: row;
  color: #fff;
  margin-right: 10px;
}
verdocs-search-box form .type button {
  border: none;
  color: #fff;
  margin: 5px 0 0 8px;
  background: transparent;
}
verdocs-search-box form svg {
  width: 12px;
  height: 12px;
  margin-right: 6px;
}
verdocs-search-box ::placeholder {
  color: #aeb4bf;
}