/* email-list-updates.css */

body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #fff;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 70vh;
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;

  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
              url('ELBackground.jpg') no-repeat center center;
  background-size: contain;
}

.hero-content h2,
.hero-content p {
  color: #fff;
}

/* Embedded form styles within hero */
.hero-content form {
  margin: 20px auto 0;
  max-width: 400px;
  text-align: left;
  background: rgba(255, 255, 255, 0.2);
  padding: 20px;
  border-radius: 6px;
}

.hero-content form h3 {
  text-align: center;
  color: #fff;
  margin-bottom: 15px;
}

.hero-content form label {
  display: block;
  margin-top: 10px;
  margin-bottom: 5px;
  font-weight: 500;
  color: #fff;
}

.hero-content form input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #333;
  background-color: #fff;
}

.hero-content form .btn {
  display: inline-block;
  padding: 10px 20px;
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 10px;
}

.hero-content form .btn:hover {
  background: var(--secondary-color);
}
