.enwrightd-wrap {
  max-width: 1100px;
}

.enwrightd-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.enwrightd-grid.cols-2 {
  grid-template-columns: 1fr;
}

@media (min-width: 860px) {
  .enwrightd-grid.cols-2 {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.enwrightd-card {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 16px 18px;
  background: #fff;
}

.enwrightd-section-title h2 {
  margin: 0 0 6px;
}

.enwrightd-section-title p {
  margin: 0 0 14px;
  color: #475569;
}

.enwrightd-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.enwrightd-row.cols-2 {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .enwrightd-row.cols-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.enwrightd-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.enwrightd-field input[type="text"],
.enwrightd-field input[type="email"],
.enwrightd-field input[type="tel"],
.enwrightd-field input[type="date"],
.enwrightd-field select,
.enwrightd-field textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  padding: 10px 10px;
  font-size: 14px;
  background: #fff;
  box-sizing: border-box;
}

.enwrightd-field textarea {
  min-height: 110px;
  resize: vertical;
}

.enwrightd-btn {
  appearance: none;
  border: 0;
  border-radius: 6px;
  padding: 10px 14px;
  font-weight: 600;
  background: #0f172a;
  color: #fff;
  cursor: pointer;
}

.enwrightd-btn:hover {
  background: #1e293b;
}

.enwrightd-notice {
  margin-top: 14px;
  padding: 10px 12px;
  border-radius: 6px;
  font-weight: 600;
}

.enwrightd-notice.ok {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
}

.enwrightd-notice.err {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

.enwrightd-note {
  margin-top: 6px;
  color: #64748b;
  font-size: 12px;
}
