body {
    background-color: #1a5eaa;
    background-image: linear-gradient(white, white 5%, transparent 70%);
    background-repeat: repeat-x;
    padding: 0 var(--page-horizontal-padding);
    font-size: 1rem;

    p {
        margin: 0;
    }
}

a {
    color: var(--brand-blue);
}


h1.title {
    font-size: 2rem;
    font-weight: 1000;
    letter-spacing: 0.04rem;
}

h2.sub-title {
  font-weight: bold;
  color: #666;
  font-size: 1rem;
  letter-spacing: 0.02rem;
}

h3.card-header.h3 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.03rem;
}

main.main {
  padding: 20px 10px 0 10px;
  background-color: #fff;
  min-height: 200px;
}
.inner-container {
  display: flex;
  flex-direction: column;
  box-shadow: 7px 4px 5px -4px rgba(0, 0, 0, 0.3),
    -7px 4px 5px -4px rgba(0, 0, 0, 0.3);
  background-color: white;
}
.heading-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.hidden {
  display: none;
}

#zip-code::-webkit-inner-spin-button,
#zip-code::-webkit-outer-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}
#zip-code {
  -moz-appearance: textfield;
}

.submit-btn {
    font-size: 1.2rem;
    letter-spacing: 0.03rem;
    line-height: 1;
    padding: 8px 20px;
    align-self: end;
}

@media (max-width: 991px) {
  main.main {
    padding: 20px 0px 0 0px;
  }
  .heading-container {
    flex-direction: column;
  }
  .heading {
    padding: 0 1.25rem;
    text-align: center;
  }
  #navbar-bottom {
    height: auto;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  div.copyright {
    margin-bottom: 5px;
    padding: 0;
  }
  div.footer-links {
    padding: 0;
    text-align: center;
  }
  .grade-level {
    margin-top: 1rem;
  }
}

#adoption-form {
    .col-form-label {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        font-size: 1.1rem;
        letter-spacing: 0.01rem;
    }

    .form-control {
        font-size: 1rem;
    }

    .card-title {
        font-size: 1.1rem;
        letter-spacing: 0.01rem;
    }

    .card-text small {
        font-size: 1rem;
    }
}

@media (min-width: 992px) {
  .grade-level,
  .adoption-decision-date {
    text-align: right;
  }
  header .header {
    height: 148px;
  }
  .heading {
    margin-left: 0.5rem;
  }
  h2.sub-title {
    margin-bottom: 0;
  }
}

.has-error .form-control {
  border: var(--error-border);
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.validation-error {
  color: red;
  font-size: 1rem;
  padding-top: 7px;
  padding-left: 2px;
}

ul.flashes li.error {
  color: red;
}