/* ===== Listmonk public pages - DDWin Solutions style ===== */

body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #f6f7fb;
  color: #111827;
}

.listmonk-form {
  max-width: 520px;
  margin: 8vh auto;
  padding: 28px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  border: 1px solid rgba(17,24,39,.06);
}

.listmonk-form h3 {
  margin: 0 0 14px 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.listmonk-form p {
  margin: 0 0 14px 0;
}

.listmonk-form input[type="email"],
.listmonk-form input[type="text"] {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(17,24,39,.12);
  outline: none;
  font-size: 15px;
  background: #fff;
}

.listmonk-form input[type="email"]:focus,
.listmonk-form input[type="text"]:focus {
  border-color: rgba(59,130,246,.7);
  box-shadow: 0 0 0 4px rgba(59,130,246,.15);
}

.listmonk-form label {
  font-size: 14px;
  color: #374151;
}

.listmonk-form span {
  display: inline-block;
  margin-top: 4px;
  color: #6b7280;
  font-size: 13px;
}

.listmonk-form input[type="checkbox"] {
  transform: translateY(1px);
  margin-right: 8px;
}

.listmonk-form input[type="submit"] {
  width: 100%;
  padding: 12px 14px;
  border: none;
  border-radius: 10px;
  background: #2563eb;
  color: white;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: transform .04s ease, opacity .2s ease;
}

.listmonk-form input[type="submit"]:hover {
  opacity: .95;
}

.listmonk-form input[type="submit"]:active {
  transform: scale(.99);
}
