.form-report {
  max-width: 560px;
}
.form-report__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.form-report__title > p {
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  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: #000;
  background: #fff;
  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;
}
.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;
  display: block;
  font-family: "Ermilov", sans-serif;
  color: #b9b9b9;
  position: relative;
  font-size: clamp(16px, 4vw, 18px);
  text-align: center;
  border-radius: 10px;
  border: 0.5px solid rgba(166, 12, 12, 0.74);
  background: rgba(216, 15, 15, 0.3019607843);
  box-shadow: 1px -2px 9px 0px rgba(184, 21, 21, 0.25) inset, 0px 4px 25px 0px rgba(51, 3, 3, 0.48);
  overflow: hidden;
  will-change: transform;
  padding: 18px 30px;
  width: 100%;
  transition: all 0.3s;
}
.form-report input[type=submit]:hover {
  background: rgba(216, 15, 15, 0.02);
}
.form-report input[type=submit]:focus {
  outline: none;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.form-report input[type=submit]:disabled {
  background-color: #ccc;
  color: #666;
  cursor: not-allowed;
}

.form-pd {
  display: none;
}
.form-pd.active {
  display: block;
}

@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;
  }
}