/* tuner.social brand theme for listmonk public pages */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');

body {
  background: #eef0f4;
  font-family: 'DM Sans', -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: #1a1f2b;
  line-height: 1.6;
}

.container, .wrap { max-width: 560px; }

/* Logo header */
.header { text-align: center; padding: 28px 0 10px; }
.header .logo img, .logo img { max-height: 44px; width: auto; }

/* Card surfaces */
section, .form, .box {
  background: #ffffff;
  border: 1px solid #e4e7ee;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 1px 3px rgba(11, 14, 20, 0.06);
}

h1, h2, h3 { color: #0b0e14; font-weight: 700; letter-spacing: -0.01em; }
a { color: #6366f1; text-decoration: none; }
a:hover { text-decoration: underline; }

/* Inputs */
input[type="text"], input[type="email"], input[type="password"] {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid #d7dbe6;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  color: #1a1f2b;
  background: #ffffff;
  box-sizing: border-box;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus {
  outline: none;
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

/* List checkboxes */
.lists label { color: #1a1f2b; }
input[type="checkbox"] { accent-color: #6366f1; }

/* Primary button */
.button, button.button, input[type="submit"] {
  background: #6366f1;
  color: #ffffff;
  font-weight: 600;
  font-family: inherit;
  border: none;
  border-radius: 10px;
  padding: 12px 22px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.15s ease;
}
.button:hover, button.button:hover, input[type="submit"]:hover { background: #818cf8; }

/* Notice / message banners */
.message, .notification { border-radius: 10px; }
