* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #eef3f9;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}

.container {
  text-align: center;
  max-width: 600px;
  padding: 40px;
  border-radius: 8px;
  background-color: #ffffff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}


.main-content .headline {
  font-size: 2rem;
  color: #155bb5; /* Darker shade of blue */
  margin: 20px 0;
}

.main-content .subtext {
  font-size: 1rem;
  color: #555;
  margin-bottom: 30px;
}

.subscribe-form {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.subscribe-form input {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  width: 60%;
  max-width: 300px;
}

.subscribe-form input:focus {
  border-color: #1a73e8;
  outline: none;
}

.subscribe-form button {
  padding: 10px 20px;
  font-size: 1rem;
  background-color: #1a73e8; /* Primary blue color */
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.subscribe-form button:hover {
  background-color: #155bb5; /* Darker shade of blue */
}

.footer {
  margin-top: 30px;
  font-size: 0.9rem;
  color: #aaa;
}

.header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-image {
  width: auto;           /* Allow automatic width adjustment */
  height: 50px;          /* Set a fixed height */
  max-height: 50px;      /* Ensure it doesn’t exceed this height */
  margin-bottom: 10px;   /* Spacing below the logo */
}

.logo {
  font-size: 2.5rem;
  color: #1a73e8;
}
