.feedback-form-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 1;
    box-sizing: border-box;

}
.feedback-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  width: 100%;
}
.feedback-form button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.form-group {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 8px;
}
.form-group label {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;

  font-size: 14px;
  line-height: 1.4;

  box-sizing: border-box;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  background: #fff;

  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #111;
}
.form-checkbox {
  display: flex;
  align-items: flex-start;
  align-self: flex-start;
  gap: 10px;

  font-size: 13px;
  line-height: 1.4;
  cursor: pointer;
}

.form-checkbox input {
  margin-top: 3px;
  cursor: pointer;
}
.feedback-form button {
  margin-top: 8px;
}
.form-message {
  height: 0px;
  max-height: 0px;
  font-size: 14px;
}

.form-message.error {
  color: #d93025;
  height: 20px;
  max-height: 20px;
}
.feedback-success {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
  text-align: center;
}

.feedback-success__title {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.feedback-success__text {
  font-size: 14px;
  margin: 0;
}
.form-data-agreement a{
  color: var(--color-primary);
}
.required-label::after {
  content: "*";
  color: #e00000;
  margin-left: 2px;
}