:root {
  --green: #2e563b;
  --beige: #fef1e7;
  --white: #ffffff;
}

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

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-family: zeitung-micro, system-ui, -apple-system, sans-serif;
  padding: 1rem;
}

.lp__bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.1;
}

.lp {
  position: relative;
  width: 100%;
  max-width: 32rem;
  text-align: center;
}

.lp__logo {
  width: 22rem;
  max-width: 90%;
  height: auto;
  margin-bottom: 2.5rem;
}

.lp__title {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.lp__text {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: #000000;
}

.lp__form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.lp__input {
  flex: 1 1 14rem;
  min-width: 0;
  padding: 0.75rem 1rem;
  font: inherit;
  color: var(--green);
  background-color: var(--white);
  border: 2px solid #000000;
  border-radius: 999px;
}

.lp__input:focus {
  outline: 2px solid var(--green);
  outline-offset: 1px;
}

.lp__button {
  padding: 0.75rem 1.5rem;
  font: inherit;
  font-weight: 700;
  color: var(--white);
  background-color: #000000;
  border: 2px solid #000000;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.lp__button:hover {
  color: #000000;
  background-color: var(--white);
}

.lp__legal {
  margin-top: 1rem;
  font-size: 0.75rem;
  line-height: 1.4;
  color: #000000;
  opacity: 0.7;
}

.lp__message {
  min-height: 1.25em;
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #000000;
}

.lp__message.is-success {
  color: var(--green);
}

.lp__message.is-error {
  color: #ed6325;
}

.lp__message a {
  color: inherit;
}
