body{
  font-family:Poppins, Arial;
}

/* HERO */
.nl-hero{
  height:540px;
  background:url('../images/newsletter/newsletter-banner.webp') center/cover no-repeat;
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:white;
  padding:0 16px;
}

.nl-hero .overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.45);
}

.nl-hero h1,
.nl-hero p{
  position:relative;
  z-index:2;
  max-width:900px;
}

/* MAIN CARD */
.nl-section{
  max-width:900px;
  margin:auto;
  padding:40px 14px 80px;
}

.nl-card{
  background:white;
  border-radius:18px;
  box-shadow:0 15px 35px rgba(0,0,0,.08);
  padding:26px 24px 30px;
  text-align:center;
}

.nl-card input{
  width:100%;
  padding:12px;
  border-radius:10px;
  border:1px solid #ccc;
  margin-top:10px;
}

.nl-btn{
  width:100%;
  margin-top:14px;
  padding:12px;
  border-radius:40px;
  border:0;
  color:white;
  background:linear-gradient(45deg,#ff6a00,#ff9900);
  cursor:pointer;
}

.nl-note{
  font-size:12px;
  color:#666;
  margin-top:6px;
}

/* MESSAGES */
.nl-msg{
  max-width:900px;
  margin:10px auto;
  padding:10px 14px;
  border-radius:10px;
  text-align:center;
}

.nl-msg.success{ background:#e6ffe9; color:#0a8a2a; }
.nl-msg.error{ background:#ffe6e6; color:#b30000; }
.nl-msg.info{ background:#e8f1ff; color:#003e9e; }

/* RESPONSIVE */
@media(max-width:520px){
  .nl-card{ padding:18px; }
}
