<body>
    <div class="button">
            <a href="#" class="button__item">
                <span class="button__text">Заказать проект</span>
            </a>
    </div>
</body>
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background: #bfbfbf;
}

/* Тип контейнер, но на самом деле нет */
.button {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  margin-top: 50px;
}

/* Кнопка */
.button__item {
  display: inline-flex;
  width: 500px;
  height: 100px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  border-left: 3px solid #fff;
  text-decoration: none;
  align-items: center;
  position: relative;
}

.button__text {
  color: #fff;
  line-height: 20px;
  font-size: 30px;
  letter-spacing: 10px;
  margin: 0 auto;
}

.button__item:before {
  content: "";
  position: absolute;
  border-right: 3px solid #fff;
  border-top: 3px solid #fff;
  overflow: hidden;
  width: 40px;
  height: 40px;
  transform: rotate(-45deg);
  bottom: -21px;
  left: 230px;

  /* В этом же блоке можно и стрелочку на bg приклеить)) */
}

.button__text:before,
.button__text::after {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  height: 0px;
  border-bottom: 3px solid #fff;
}
.button__text:before {
  left: -3px;
  width: 225.5px;
}
.button__text:after {
  right: -3px;
  width: 216.9px;
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.