.form-report {
  max-width: 560px;
  background: #FFFFFF;
  border-radius: 32px;
  padding: 32px 24px 24px;
}

.form-report__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.form-report__title>p {
  font-family: "Inter";
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  color: #000000;
  margin: 0;
}

.form-report__close {
  cursor: pointer;
  background-color: transparent;
  border: none;
  padding: 0;
  margin: 0;
}

.form-report__close svg {
  pointer-events: none;
}

.form-report__inputs {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-report__input {
  width: 100%;
}

.form-report__input input {
  width: 100%;
  padding: 16px 17px;
  font-family: "Inter";
  font-weight: 400;
  font-size: 14px;
  line-height: 125%;
  color: #858585;
  border: 1px solid #D6D6D6;
  border-radius: 12px;
}

.form-report__textarea {
  display: none;
  width: 100%;
}

.form-report__textarea textarea {
  width: 100%;
  min-height: 120px;
  max-height: 300px;
  padding: 16px 17px;
  font-family: "Inter";
  font-weight: 400;
  font-size: 14px;
  line-height: 125%;
  color: #858585;
  border: 1px solid #D6D6D6;
  border-radius: 12px;
  resize: none;
}

.form-report__input-error {
  display: none;
}

.form-report__input-error.active {
  display: block;
  color: #E3191C;
  font-size: 11px;
  text-align: end;
  margin-right: 10px;
}

.form-report__success {
  /* display: none; */
}

.form-report__success.active {
  text-align: center;
  display: block;
}

.form-report__btns {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-report input[type=submit] {
  cursor: pointer;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #E3191C;
  border-radius: 16px;
  border: none;
  padding: 19px 0;
  font-family: "Inter";
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  color: #FFFFFF;
}

.form-report input[type=submit]:hover {
  background-color: rgb(181.0595238095, 19.9404761905, 22.3333333333);
}

.form-report input[type=submit]:focus {
  outline: none;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.form-report input[type=submit]:active {
  background-color: rgb(234.4642857143, 68.5357142857, 71);
}

.form-report input[type=submit]:disabled {
  background-color: #ccc;
  color: #666;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .form-buy {
    border-radius: 15px;
    min-width: 335px;
  }

  .form-buy__input input {
    font-size: 12px;
    padding: 12px;
  }

  .form-buy__inputs {
    gap: 10px;
  }

  .form-buy input[type=submit] {
    font-size: 12px;
    padding: 12px 0;
  }

  .form-buy__title {
    margin-bottom: 20px;
  }

  .form-buy__title>p {
    font-size: 18px;
  }
}