* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: #ffffff;
  color: #000000;
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

main {
  width: 100%;
  max-width: 440px;
  text-align: center;
}

h1 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 9vw, 84px);
  font-weight: 600;
  letter-spacing: 0.08em;
  margin: 0 0 40px;
}

#wl-form {
  display: flex;
  gap: 8px;
}

@media (max-width: 480px) {
  #wl-form {
    flex-direction: column;
  }
}

#wl-form input[type="email"] {
  flex: 1;
  padding: 12px 14px;
  border: 1px solid #d4d4d8;
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  background: #ffffff;
  color: #000000;
  outline: none;
}

#wl-form input[type="email"]:focus {
  border-color: #000000;
}

#wl-form button {
  padding: 12px 20px;
  background: #000000;
  color: #ffffff;
  border: 0;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}

#wl-form button:hover {
  background: #1f1f1f;
}

#wl-form button[disabled] {
  opacity: 0.6;
  cursor: progress;
}

.msg {
  margin-top: 12px;
  font-size: 13px;
  min-height: 18px;
}

.msg.ok {
  color: #047857;
}

.msg.err {
  color: #b91c1c;
}

.demo-link {
  margin: 32px 0 0;
  font-size: 14px;
}

.demo-link a {
  color: #000000;
  text-decoration: none;
  border-bottom: 1px solid #d4d4d8;
  padding-bottom: 2px;
}

.demo-link a:hover {
  border-bottom-color: #000000;
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
