/* Listmonk public pages — paste into Settings > Appearance > Custom CSS */

body {
  margin: 0;
  padding: 0;
  background-color: #F5F0E8;
  font-family: Georgia, serif;
  font-size: 18px;
  line-height: 1.75;
  color: #2C241E;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 480px;
  margin: 0 auto;
  padding: 60px 24px;
}

h1, h2 {
  font-family: Georgia, serif;
  font-weight: 300;
  color: #2C241E;
  margin-bottom: 16px;
}

h1 {
  font-size: 28px;
  line-height: 1.3;
}

p {
  color: #2C241E;
  margin-bottom: 16px;
}

a {
  color: #8B7355;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

/* Form elements */
input[type="email"],
input[type="text"],
select {
  width: 100%;
  font-family: Georgia, serif;
  font-size: 16px;
  color: #2C241E;
  background: #FDFBF7;
  border: 1px solid #E4DBC9;
  padding: 12px 16px;
  border-radius: 4px;
  margin-bottom: 12px;
  outline: none;
}

input[type="email"]:focus,
input[type="text"]:focus,
select:focus {
  border-color: #8B7355;
}

/* Buttons */
button,
input[type="submit"],
.btn {
  font-family: Georgia, serif;
  font-size: 16px;
  color: #FDFBF7;
  background-color: #8B7355;
  border: none;
  padding: 12px 32px;
  border-radius: 4px;
  cursor: pointer;
}

button:hover,
input[type="submit"]:hover,
.btn:hover {
  opacity: 0.9;
}

/* Checkboxes and list items */
.checkbox label {
  font-family: Georgia, serif;
  font-size: 16px;
  color: #2C241E;
}

/* Messages */
.message {
  font-family: Georgia, serif;
  font-size: 18px;
  color: #2C241E;
  text-align: center;
  padding: 60px 24px;
}

/* Hide default listmonk branding */
.footer,
.powered-by {
  display: none;
}
