/* CCAKD Public Pages Branding */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #f5f5f5;
  color: #333;
}

/* Header area */
.header {
  background-color: #fff;
  border-bottom: 3px solid #C42D14;
  padding: 1rem;
}

.header .logo img {
  max-height: 60px;
}

/* Navigation / top bar */
.header a, .header .title {
  color: #333;
}

/* Primary action buttons */
a.button, .button, input[type="submit"] {
  background-color: #C42D14 !important;
  border-color: #C42D14 !important;
  color: #fff !important;
  border-radius: 9999px;
  padding: 0.5em 1.5em;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  transition: background-color 0.2s;
}

a.button:hover, .button:hover, input[type="submit"]:hover {
  background-color: #A82410 !important;
  border-color: #A82410 !important;
}

/* Links */
a {
  color: #C42D14;
}

a:hover {
  color: #A82410;
}

/* Headings */
h1, h2, h3, h4 {
  font-family: 'Roboto', sans-serif;
  color: #C42D14;
  font-weight: 500;
}

/* Content cards/boxes */
.box, .card, .wrap {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

/* Form inputs */
input[type="text"],
input[type="email"],
input[type="password"],
textarea, select {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 0.6em 0.8em;
  font-family: 'Roboto', sans-serif;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus, select:focus {
  border-color: #C42D14;
  outline: none;
  box-shadow: 0 0 0 2px rgba(196, 45, 20, 0.15);
}

/* Footer */
.footer {
  background-color: #C42D14;
  color: #fff;
  padding: 1.5rem;
  text-align: center;
}

.footer a {
  color: #fff;
  opacity: 0.9;
}

.footer a:hover {
  color: #fff;
  opacity: 1;
}

/* List items and subscription page */
.list-item {
  border-bottom: 1px solid #eee;
  padding: 0.75rem 0;
}

/* Notification/flash messages */
.notification.is-success {
  background-color: #48c774;
}

.notification.is-danger {
  background-color: #C42D14;
}