@import "https://fonts.googleapis.com/css2?family=Anton&family=Cabin:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap";

#list-page-content {
  margin-top: 0;
  min-height: calc(100vh - 86px);
  display: block;
}

#list-page-content.no-featured-image {
  margin-top: 100px;
  min-height: calc(100vh - 186px);
}

#list-image {
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#list-image h1 {
  display: flex;
  flex-wrap: wrap;
  font-family: 'Anton', Tahoma, sans-serif;
  font-size: clamp(70px, 3vw, 140px);
  font-weight: bolder;
  -webkit-text-stroke: 1px black;
  text-transform: uppercase;
  text-shadow: 2px 5px 10px #0b0b0b;
  justify-content: center;
}

#list-image h1 .white {
  color: white;
}

#list-image h1 .yellow {
  color: #FDCA2E;
}

#list-image h1 .blue {
  color: #199BFC;
}

.sign-up-page-content {
  display: flex;
  width: 100%;
  margin: 0 auto;
  justify-content: space-between;
  flex-direction: column-reverse;
}

.sign-up-page-content .left {
  padding-top: 60px;
  width: 100%;
}

.sign-up-page-content .right {
  min-width: 100%;
}

#sign-up-form {
  width: 100%;
}

#sign-up-form .sign-up-input {
  width: 100%;
  padding: 5px 10px;
  margin-top: 2px;
  border-radius: 5px;
}

#sign-up-form button {
  margin: 20px 0;
  background-color: var(--wpforms-button-background-color-alt, var(--wpforms-button-background-color));
  color: var(--wpforms-button-text-color);
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
}

.messages {
  margin-top: 20px;
}

.messages .error {
  background: #e4b9c0;
  border: 1px solid darkred;
  color: darkred;
  border-radius: 5px;
}

.messages p {
  padding: 5px;
  margin-bottom: 5px;
  font-weight: bold;
  text-align: center;
}

.messages .success {
  background: lightgreen;
  border: 1px solid darkgreen;
  color: darkgreen;
  border-radius: 5px;
}

.sign-ups {
  margin: 50px 0;
}

.sign-ups h3 {
  margin-bottom: 40px;
}

.sign-ups h4 {
  margin-top: 20px;
}

.sign-ups ol {
  list-style-type: decimal;
  margin: 20px 0 0 40px;
  font-size: 70%;
}

.sign-ups ol li {
  margin-bottom: 16px;
  line-height: 1;
  font-size: 3em;
}

.sign-ups ol li .wrapper {
  position: relative;
  top: -10px;
}

.sign-ups ol li h6 {
  font-size: .6em;
}

.sign-ups ol li p {
  font-size: .5em;
}

@media only all and (min-width: 600px) {
  .sign-up-page-content {
    flex-direction: row !important;
  }

  .sign-up-page-content .right {
    padding-top: 60px !important;
    padding-left: 50px !important;
    min-width: 350px !important;
  }
}