.polkoff-report-wrap {
  margin: 28px 0 10px;
  padding: 18px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.06);
}

.polkoff-report-title {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: .2px;
}

.polkoff-report-form {
  margin: 0;
}

.polkoff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 780px) {
  .polkoff-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.polkoff-field {
  display: block;
  margin: 0 0 14px;
}

.polkoff-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 8px;
}

.polkoff-field input[type="text"],
.polkoff-field input[type="email"],
.polkoff-field input[type="file"],
.polkoff-field textarea {
  width: 100%;
  box-sizing: border-box;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.14);
  background: #fff;
  padding: 12px 12px;
  font-size: 15px;
  outline: none;
  transition: box-shadow .2s ease, border-color .2s ease, transform .05s ease;
}

.polkoff-field textarea {
  resize: vertical;
  min-height: 80px;
}

.polkoff-field input:focus,
.polkoff-field textarea:focus {
  border-color: rgba(0,0,0,.35);
  box-shadow: 0 0 0 4px rgba(0,0,0,.06);
}

.polkoff-hint {
  margin-top: 6px;
  font-size: 12px;
  opacity: .75;
}

.polkoff-honeypot {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.polkoff-agree {
  margin-top: 6px;
}

.polkoff-agree-label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.35;
  user-select: none;
}

.polkoff-agree-label input[type="checkbox"] {
  margin-top: 3px;
  transform: scale(1.1);
}

.polkoff-agree-label a {
  text-decoration: underline;
}

.polkoff-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.polkoff-btn {
  appearance: none;
  border: none;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  background: #111;
  color: #fff;
  transition: transform .06s ease, opacity .2s ease, box-shadow .2s ease;
  box-shadow: 0 10px 22px rgba(0,0,0,.12);
}

.polkoff-btn:hover {
  transform: translateY(-1px);
}

.polkoff-btn:active {
  transform: translateY(0);
}

.polkoff-btn:disabled {
  cursor: not-allowed;
  opacity: .45;
  box-shadow: none;
}

.polkoff-report-form.is-loading .polkoff-btn {
  opacity: .75;
  cursor: progress;
}

.polkoff-spinner {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid rgba(0,0,0,.18);
  border-top-color: rgba(0,0,0,.75);
  display: none;
  animation: polkoffSpin 0.8s linear infinite;
}

.polkoff-spinner.is-visible {
  display: inline-block;
}

@keyframes polkoffSpin {
  to { transform: rotate(360deg); }
}

.polkoff-notices {
  margin-top: 14px;
}

.polkoff-notice {
  border-radius: 12px;
  padding: 12px 12px;
  font-size: 14px;
  border: 1px solid rgba(0,0,0,.1);
  background: #f7f7f7;
}

.polkoff-notice ul {
  margin: 0;
  padding-left: 18px;
}

.polkoff-notice--success {
  background: #f0fff4;
  border-color: rgba(0, 128, 0, .18);
}

.polkoff-notice--error {
  background: #fff5f5;
  border-color: rgba(200, 0, 0, .18);
}
