.Search form {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 60px;
  padding: 6px 6px 6px 16px;
  background: #fff;
  border: 1px solid #dbdbdb;
  border-radius: 4px;
  color: #888797;
  transition: all 0.25s ease-in-out;

  div {
    align-items: center;
    display: flex;
    width: 100%;

    i {
      width: 24px;
      height: 24px;
      font-size: 24px;
      color: #4e4d59;

      &::before {
        display: block;
      }
    }
  }

  input {
    border: none;
    color: #8f9db3;

    &::placeholder {
      color: #888797;
      font-size: 16px;
      font-weight: 400;
    }

    &:focus {
      border: none;
      color: #272647;
    }
  }

  .Button {
    width: 167px;
    border-radius: 8px;
  }

  &:focus-within {
    border-color: #2a2c89;

    i {
      color: #2a2c89;
    }
  }
}
