.input-button {
  align-items: center;
  display: flex;

  & > * {
    height: 100%;
  }

  & > input {
    border-top-left-radius: var(--button-border-radius);
    border-bottom-left-radius: var(--button-border-radius);
    border-color: transparent;
    height: 35px;
    width: 200px;
    padding-left: 15px;
    background-color: var(--white);
    color: var(--text-color);
  }

  & > button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    height: 35px;
    width: 130px;
    padding: inherit;
  }
}

@media (min-width: 767px) {
    .input-button > input {
        width: 400px;
    }

    .input-button > button {
        width: 200px;
    }
}
