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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  background-color: #F1E0CD;
  color: #F1E0CD;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.wrapper {
  max-width: 480px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  width: 140px;
  height: 140px;
  object-fit: contain;
  margin-bottom: 32px;
  border-radius: 12px;
}

h1 {
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 14px;
  color: #2f3a26;
}

.subtitle {
  font-size: 1rem;
  color: #5c6650;
  margin-bottom: 36px;
  line-height: 1.5;
}

.notify-form {
  display: flex;
  gap: 10px;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
}

.notify-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 12px 16px;
  border: 1px solid #b8ab8f;
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
  background-color: #fdf9f2;
  color: #2f3a26;
}

.notify-form input[type="email"]:focus {
  outline: none;
  border-color: #2f3a26;
}

.notify-form button {
  padding: 12px 22px;
  background-color: #2f3a26;
  color: #f2e4d0;
  border: none;
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.notify-form button:hover {
  background-color: #45543a;
}

.confirm-msg {
  display: none;
  font-size: 1rem;
  color: #2f3a26;
  font-weight: 500;
  padding: 12px 0;
}

.footer-note {
  margin-top: 48px;
  font-size: 0.8rem;
  color: #8a8168;
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }
  .logo {
    width: 110px;
    height: 110px;
  }
}
