.content {
  background: white;
  display: grid;
  grid-template-columns: 35% 65%;
  gap: 2rem;
  padding: 2.5rem;
}
.content .left__column {
  display: flex;
  flex-direction: column;
  padding: 0 3rem 0 5rem;
  border-right: 2px solid #E3E3E3;
  justify-content: space-between;
}
.content .right__column {
  display: flex;
  flex-direction: column;
  padding: 0 7rem;
}
.left__column .title {
  color: #1B1836;
  font-size: 25px;
  font-weight: 600;
}
.left__column .info__container {
  margin-top: 35px;
  display: flex;
  flex-direction: column;
}
.info__container .container__title {
  font-size: 20px;
  color: #1B1836;
  font-weight: 600;
}
.info__container .container__item {
  color: #5D5D5D;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 5px;
}
.left__column .back {
  background: #39578B;
  padding: 1rem;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  width: 90px;
  text-align: center;
  margin-top: 120px;
}
.right__column .info__bold,
.right__column .info__muted {
  font-size: 14px;
  line-height: 20px;
  text-align: left;
  font-weight: 400;
}
.right__column .info__bold {
  color: #1B1836;
}
.right__column .info__muted {
  color: #5D5D5D;
}
.right__column .form__inputs {
  margin-top: 3rem;
}
.right__column textarea {
  border: 1px solid #39578B;
  border-radius: 5px;
  width: 370px;
  resize: none;
  height: 150px;
}
.right__column .form__submit--button {
  background: #39578B;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 1rem 3rem;
  display: flex;
  margin-left: auto;
  margin-top: 4.5rem;
  cursor: pointer;
  font-size: 16px;
}
@media only screen and (max-width: 810px) {
  .content {
    display: flex;
    flex-direction: column;
  }
  .content .left__column, .content .right__column {
    padding: 0;
  }
  .content .left__column {
    border-right: none;
  }
  .left__column .back {
    margin-top: 1rem;
  }
  .right__column textarea {
    width: 100%;
  }
  .right__column .form__submit--button {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }
}
