.newsletter {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  margin-top: 10vh;
  --max-width: 600px;
}

.newsletter .copy {
  margin: 5px auto 5vh auto;
  text-align: center;
}

.newsletter .form {
  width: 90%;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form :not(a,h2) {
  margin: 5px auto;
}

.newsletter .form input[type="email"] {
  height: 1.4em;
  width: 90%;
  max-width: var(--max-width);
  font-size: inherit;
  border: 1px solid var(--accent1);
  border-radius: 4px;
  text-indent: 1em;
}

.newsletter .form .consent {
  font-size: 15px;
}

.newsletter .form input[type="checkbox"] {
  height: 15px;
  width: 15px;
  cursor: pointer;
}

.newsletter .form .submit-btn {
  width: 20vmax;
  height: 5vh;
  border-radius: 8px;
  background: #FF6B6B;
  color: var(--white);

  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin: 5vh auto;
  transition: all .2s ease-out;
}

.newsletter .form .submit-btn:hover, .submit-btn:focus {
  background: #D19999;
}

.newsletter .disclaimer {
  font-size: x-small;
  color: var(--darker-white);
  max-width: var(--max-width);
}

.newsletter .grecaptcha-badge { 
  visibility: hidden; 
}