body {
  margin: 0;
  padding: 25px;
  background-color: #89CFF0;
  font-family: Arial, sans-serif;
  min-height: 200vh;
}

.center-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  text-align: center;
  padding-top: 8vh;
}

img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 16px;
}

h1 {
  margin: 0;
  font-size: 40px;
  color: #0f2d4a;
}

.subtitle {
  margin: 10px 0 24px;
  color: #1f4b6e;
  font-size: 18px;
}

h3 {
  margin: 24px 0 12px;
  color: #0f2d4a;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 12px;
}

.newsletter-form input {
  padding: 12px 14px;
  border: 1px solid #aac7da;
  border-radius: 8px;
  min-width: 240px;
  outline: none;
}

.newsletter-form button {
  padding: 12px 18px;
  border: none;
  border-radius: 8px;
  background: #0f2d4a;
  color: white;
  cursor: pointer;
}

.newsletter-form button:hover {
  background: #163a5f;
}

#message {
  min-height: 24px;
  font-weight: 600;
  color: #0f2d4a;
}

.extra-space {
  height: 120vh;
}

.title {
  color: #5C6AC4;
}