.searchform {
  position: relative;
}

.searchform input[type="text"] {
  line-height: 62px;
  background-color: var(--beforce-lightgrey);
  outline-color: var(--beforce-lightgrey);
  border: none;
  border-radius: 40px;
  width: 100%;
  padding: 0 90px 0 20px;
  transition: .3s ease-in-out;
}

.searchform input[type="text"]:focus {
  outline-color: var(--beforce-blue);
}

.searchform .form-actions {
  position: absolute;
  top: 1px;
  right: 0;
  width: 82px;
  height: 64px;
}

.searchform .form-submit {
  border-radius: 40px;
  padding: 0;
  margin: 0;
  font-size: 0;
  background-color: transparent;
  width: 100%;
  height: 100%;
  border: none;
  background-color: var(--beforce-blue);
  background-image: url('/themes/custom/ebm/components/form/searchform/assets/magnifier.svg');
  background-repeat: no-repeat;
  background-size: 31px 31px;
  background-position: center;
}