.cp-form {
  max-width: 760px;
}

.cp-form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cp-form__label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-text);
}

.cp-form__textarea {
  width: 100%;
  min-height: 180px;
  padding: 12px 14px;
  border: 1px solid var(--c-border);
  border-radius: 12px;
  background: #fff;
  color: var(--c-text);
  font-size: 0.96rem;
  line-height: 1.55;
  resize: vertical;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.cp-form__textarea:focus {
  outline: none;
  border-color: var(--c-link);
  box-shadow: 0 0 0 2px rgba(23, 92, 211, 0.15);
}

.cp-form__hint {
  font-size: 0.82rem;
  color: var(--c-muted);
}

.cp-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--c-text);
  font-size: 0.94rem;
}

.cp-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
}