body {
  display: flex;
  justify-content: center;
}
body::before {
  content: "";
  position: fixed;
  top: 0%;
  width: 100%;
  height: 50%;
  background: url("background-top.svg") center;
  z-index: -1;
}
body::after {
  content: "";
  position: fixed;
  top: 50%;
  width: 100%;
  height: 50%;
  background: url("background-bottom.svg") center;
  z-index: -1;
}

.form {
  font-family: "Plus Jakarta Sans";
  align-items: center;
  display: flex;
  max-width: 90%;
  flex-direction: column;
  gap: 48px;
}
.form__row {
  width: 100%;
  max-width: 412px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.form__row--buttons-container {
  gap: 16px;
}
.form__row--recos-container {
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}
.form__row--msg-container {
  width: 752px;
  max-width: 100%;
  gap: 16px;
}
.form__logo {
  width: 200px;
  align-self: center;
}
.form__header {
  text-align: center;
  font-size: 36px;
  color: var(--black-900, #000);
  font-weight: 700;
  font-family: "Satoshi", sans-serif;
  line-height: 47.437px; /* 130% */
  letter-spacing: -1.825px;
}
.form__description {
  color: var(--black-700, #434343);
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 150% */
  letter-spacing: -0.28px;
}
.form__text-input {
  padding: 16px 24px;
  border-radius: 15px;
  border: 1px solid var(--black-100, #E3E3E3);
  background: #FFF;
  color: var(--black-500, #666);
  font-size: 14px;
  font-weight: 500;
  line-height: 21px; /* 150% */
  letter-spacing: -0.28px;
  height: 144px;
  resize: none;
}
.form__text-input:focus {
  border: 2px solid var(--black-100, #434343);
  outline: none;
}

.fbutton {
  align-self: center;
  width: 100%;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.28px;
  padding: 16px 24px;
  border-radius: 15px;
  border: none;
}
.fbutton--yes {
  background: var(--secondary-500, #33A457);
  color: #FFF;
}
.fbutton--no {
  background: var(--black-50, #F7F7F7);
  color: var(--black-500, #666);
  border: 1px solid var(--black-100, #E3E3E3);
}
.fbutton--send {
  color: #FFF;
  width: 168px;
  background: var(--secondary-500, #33A457);
  justify-content: center;
  align-items: center;
}

.reco {
  display: flex;
  padding: 16px;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border-radius: 8px;
  border: 1px solid var(--black-100, #E3E3E3);
  background: #FFF;
}
.reco__img {
  width: 150px;
  object-fit: contain;
}
.reco__mark {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.reco__mark__text {
  color: var(--black-900, #000);
  font-size: 14px;
  font-weight: 700;
  line-height: 21px; /* 150% */
  letter-spacing: -0.28px;
  white-space: nowrap;
}
.reco__mark__stars {
  /*display: flex;*/
  flex-direction: row;
  justify-content: flex-start;
  gap: 8px;
}
.reco__amount-info {
  color: var(--black-700, #434343);
  font-size: 12px;
  font-weight: 400;
  line-height: 21px; /* 175% */
  letter-spacing: -0.24px;
}

/*# sourceMappingURL=style.css.map */
