.elf-growth-form {
  display: grid;
  gap: 12px;
  max-width: 520px;
}

.elf-growth-form label {
  display: grid;
  gap: 6px;
}

.elf-growth-form input[type="email"] {
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #68737d;
  border-radius: 4px;
  background: #fff;
  color: #161b1f;
}

.elf-growth-form button {
  min-height: 44px;
  padding: 10px 16px;
  border: 0;
  border-radius: 4px;
  background: #153f36;
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.elf-growth-form button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.elf-growth-check {
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
}

.elf-growth-check input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
}

.elf-growth-form-result {
  margin: 0;
  color: #146c43;
}

.elf-growth-form-result.is-error {
  color: #a32121;
}

.elf-growth-status-notice {
  position: relative;
  z-index: 99999;
  padding: 12px 18px;
  border-bottom: 1px solid #9bbdac;
  background: #e9f5ef;
  color: #173e31;
  text-align: center;
  font-weight: 700;
}

.elf-growth-consent {
  position: fixed;
  z-index: 999999;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 980px;
  margin: 0 auto;
  padding: 14px 16px;
  border: 1px solid #4b545b;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 12px 32px rgb(0 0 0 / 18%);
  color: #161b1f;
}

.elf-growth-consent p {
  margin: 0;
}

.elf-growth-consent > div {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.elf-growth-consent button {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid #374047;
  border-radius: 4px;
  background: #fff;
  color: #161b1f;
  font: inherit;
  cursor: pointer;
}

.elf-growth-consent button:last-child {
  border-color: #153f36;
  background: #153f36;
  color: #fff;
}

@media (max-width: 760px) {
  .elf-growth-consent {
    align-items: stretch;
    flex-direction: column;
  }

  .elf-growth-consent > div {
    display: grid;
    grid-template-columns: 1fr;
  }
}
