body {
  background: #16098f; /* Dark blue */
  font-family: 'Londrina Solid', sans-serif;
  min-height: 100vh;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  padding: 1.5em 2em;              /* Further reduced top/bottom padding */
  max-width: 350px;
  width: 100%;                     /* Ensure it scales on smaller devices */
  text-align: center;
  margin: 0 auto;
}

.logo-image {
  max-width: 100%;                 /* Responsive logo */
  height: auto;
  margin-bottom: 0.2em;            /* Less space below the logo */
  border-radius: 12px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 0.1em;                      /* Less space between input and button */
  align-items: center;
  margin-top: -1cm;                /* Move form up by 1cm */
}

input[type="email"] {
  padding: 0.4em 1em;
  border: none;
  border-radius: 6px;
  font-size: 1em;
  width: 100%;                     /* Fill form width */
  max-width: 400px;                /* Limit max width for desktop layout */
  box-sizing: border-box;          /* Prevent overflow due to padding */
  font-family: 'Londrina Solid', sans-serif;
}

button {
  padding: 0.4em 1em;
  width: 100%;                     /* Match input width */
  max-width: 400px;                /* Match input */
  background: #74c0ec;
  color: #16098f;
  border: 2px solid #000;
  border-radius: 6px;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  font-family: 'Londrina Solid', sans-serif;
}

button:hover {
  background: #74c0ec;
  color: #16098f;
}

#message {
  margin-top: 1em;
  font-size: 1em;
  color: #fff;                     /* Default message color */
}
