.link__title {
  text-align: center;
  font-family: "Comfortaa", Sans-serif;
  font-weight: bold;
  color: #fff;
  font-size: 55px;
}
@media (max-width: 600px) {
  .link__title {
    font-size: 45px;
  }
}
.link__title span {
  color: #fa6120;
}
.link__page {
  min-height: 70vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.link__block {
  background-color: #fff;
  padding: 45px;
  border-radius: 20px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}
@media (max-width: 410px) {
  .link__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
}
@media (max-width: 600px) {
  .link__block {
    padding: 20px;
  }
}
.link__block input {
  width: -webkit-fill-available;
  background-color: #f2f2f2;
  border-width: 0px 0px 0px 0px;
  border-radius: 50px 0 0 50px;
  font-family: "Open Sans", Sans-serif;
  font-size: 20px;
  font-weight: 400;
  padding: 6px 30px;
  height: 68px;
}
@media (max-width: 410px) {
  .link__block input {
    width: 100%;
    border-radius: 47px;
  }
}
.link__block button {
  height: 68px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Comfortaa", Sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: #0a032b;
  background-color: transparent;
  background-image: linear-gradient(130deg, #fa6120 2%, #ffb739 75%);
  border-radius: 0 47px 47px 0;
  padding: 15px;
  text-decoration: none;
  width: 10%;
  border: none;
}
@media (max-width: 600px) {
  .link__block button {
    width: 20%;
  }
}
@media (max-width: 410px) {
  .link__block button {
    width: 100%;
    border-radius: 47px;
  }
}
.link__result {
  font-family: "Comfortaa", Sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 28px;
  color: #fff;
}
.link__result_title {
  margin-bottom: 20px;
}

.result__loader-box {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.result__loader-box-loader {
  width: 50px;
  height: 50px;
}
.result__loader-box-loader .spinner::before {
  background-color: #0a032b;
}
.result__link-container {
  display: none;
}
.result__title {
  margin-bottom: 20px;
}
.result__error-box {
  display: none;
}
.result.loading .result__loader-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.result.generated .result__link-container {
  display: block;
}
.result.error .result__error-box {
  display: block;
}