.report {
  padding: 105px 0;
  background-color: var(--secondary-background-color);
}

.report__container {
  display: flex;
  justify-content: space-between;
}

.report__owner-container {
  width: 301px;
  min-width: 301px;
  margin-right: 56px;
}

.report__owner-image {
  width: 100%;
  user-select: none;
}

.report__owner-title {
  margin-top: 18px;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
}

.report__title {
  margin-bottom: 27px;
}

.report__owner-text {
  margin-top: 6px;
}

.report__form {
  display: flex;
  margin: 0;
  background-color: var(--main-background-color);
  border-radius: 16px;
  padding: 38px 30px;
  background-image: url("/images/mail-background.svg");
  background-position: right bottom;
}

.report__checkbox-label {
  display: flex;
  align-items: center;
}

.report__checkbox {
  display: block;
}

.report__checkbox-text {
  font-size: 14px;
  line-height: 20px;
  margin-left: 10px;
  display: block;
  transition: color .1s linear;
}

.report__send-button {
  padding: 13px 52px;
  margin-right: 30px;
  flex: 0 0;
  white-space: nowrap;
}

@media screen and (max-width: 1280px) {
  .report__form {
    flex-flow: column-reverse;
    align-items: flex-start;
  }

  .report__send-button {
    margin-right: 0;
    margin-top: 24px;
  }
}

@media screen and (max-width: 960px) {
  .report__form {
    align-items: stretch;
    background-image: none;
  }
}

@media screen and (max-width: 960px) and (min-width: 681px) {
  .report__container {
    flex-direction: column-reverse;
  }

  .report__owner-image {
    width: 301px;
    margin-right: 24px;
  }

  .report__owner-title {
    margin-top: 0;
  }

  .report__owner-container {
    margin-top: 24px;
    display: flex;
    width: 100%;
  }
}

@media screen and (max-width: 680px) {
  .report {
    padding: 90px 0 50px;
  }

  .report__container {
    flex-direction: column-reverse;
  }

  .report__owner-container {
    margin-top: 24px;
    display: flex;
  }

  .report__form {
    margin: 0;
  }

  .report__title {
    margin-bottom: 24px;
  }

  .report__owner-container {
    width: unset;
    margin-right: 0;
  }

  .report__owner-title {
    margin-top: 14px;
  }

  .report__owner-image {
    width: 301px;
    margin-right: 24px;
  }

  .report__owner-title {
    margin-top: 0;
  }
}

@media screen and (max-width: 490px) {
  .report__owner-container {
    display: block;
  }

  .report__owner-image {
    width: 100%;
    margin-right: 0;
  }

  .report__owner-title {
    margin-top: 14px;
  }
}
