.newsletter {
  padding: 45px 1.5rem 57px;
  text-align:center;
  background: linear-gradient(180deg, #0a0620 0%, #07051a 100%);
}
.newsletter__grid { display:grid; grid-template-columns: 1fr; }
.newsletter__content {
  max-width: 640px;
  margin: 0 auto;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 14px;
}
.newsletter__heading {
  margin: 0;
  font-family: Rajdhani, sans-serif;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: .04em;
  color:#ffffff;
}
.newsletter__subheading {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}
.newsletter__subheading p { margin:0; }
.newsletter__box { width:100%; margin-top: 6px; }
.newsletter__email-form { width:100%; }
.newsletter__form-field-wrapper {
  display:flex;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 4px;
  max-width: 480px;
  margin: 0 auto;
  align-items:center;
}
.newsletter__form-field-wrapper:focus-within {
  border-color: #7a4eff;
}
.field { flex: 1 1 0; }
.newsletter__input.field__input {
  width: 100%;
  background: transparent;
  border: 0;
  outline: none;
  padding: 12px 18px;
  font-family: Rajdhani, sans-serif;
  font-size: 14px;
  color: #ffffff;
  letter-spacing: .04em;
}
.newsletter__input.field__input::placeholder {
  color: rgba(255,255,255,0.45);
}
.newsletter__button.button {
  background: #7a4eff;
  color: #ffffff;
  border: 0;
  border-radius: 100px;
  padding: 10px 26px;
  font-family: Rajdhani, sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s ease 0s;
}
.newsletter__button.button:hover { background: #5b32d9; }

@media(min-width: 990px) {
  .newsletter { padding: 60px 1.5rem 76px; }
  .newsletter__heading { font-size: 42px; }
}
