
@scope(.emailnewsletter){
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  height: 100vh;
  overflow: hidden;
}

.newsletter-container {
  height: 300px;
  /*background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #00c1ff 100%);*/
  background: #1e3c72;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;

}

.newsletter-content {
  text-align: center;
  max-width: 800px;
  width: 100%;
}

h1 {
  color: white;
  font-size: 2rem;
  font-weight: 500;
  font-family:sans-serif;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  background: white;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

input[type="email"] {
  flex: 1;
  padding: 0.8rem 1.5rem;
  border: none;
  font-size: 1rem;
  outline: none;
  background: white;
  color: #333;
}

input[type="email"]::placeholder {
  color: #999;
}

input[type="email"]:focus {
  background: #f8f9fa;
}

button {
  background: #1a237e;
  color: white;
  border: none;
  padding: 0.8rem 2.5rem;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 120px;
}

button:hover {
  background: #0d47a1;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

button:active {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .newsletter-container {
    height: 400px;
    padding: 1rem;
  }
  
  h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
  
  p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .newsletter-form {
    flex-direction: column;
    max-width: 400px;
  }
  
  input[type="email"] {
    border-radius: 8px 8px 0 0;
  }
  
  button {
   
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
  }
  
  .newsletter-form {
    max-width: 100%;
  }
  
  input[type="email"],
  button {
    padding: 1rem;
  }
}
}
