/* ------------------------------------------------------------------
   Newsletter signup form (Contact section)
------------------------------------------------------------------ */
.newsletter {
  max-width: 600px;
  margin: 40px 0;
  padding: 24px;
  border: 1px solid #dddddd;
  border-radius: 4px;
  background: #fafafa;
}

.newsletter h5 {
  font-family: 'robotobold', sans-serif;
  font-size: 15px;
  text-transform: uppercase;
  color: #555555;
  margin: 0 0 12px;
}

.newsletter-intro {
  margin-bottom: 18px;
}

.newsletter-field {
  margin-bottom: 14px;
}
.newsletter-field label {
  display: block;
  margin-bottom: 5px;
  color: #555555;
}
.newsletter-field input[type="email"] {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #aaaaaa;
  border-radius: 3px;
  color: #555555;
  outline: 0;
  background: #ffffff;
}
.newsletter-field input[type="email"]:focus {
  border-color: #6cc0f7;
}

.newsletter-consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 16px;
  line-height: 1.5;
}
.newsletter-consent input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
  flex-shrink: 0;
}

.newsletter button[type="submit"] {
  display: inline-block;
  padding: 10px 20px;
  background-color: #6cc0f7;
  color: #ffffff;
  border: 0;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.newsletter button[type="submit"]:hover {
  background-color: #5393bd;
}

.newsletter-privacy {
  margin-top: 16px;
  font-size: 12px;
  line-height: 1.6;
  color: #777777;
}

/* Honeypot: hidden from people, visible to naive bots that fill everything in */
.newsletter-hp {
  position: absolute;
  left: -5000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media screen and (max-width: 992px) {
  .newsletter {
    padding: 18px;
  }
}
