#form-container {
   width: clamp(320px, 32vw, 800px); 
}

form {
    text-align: left;
    align-items: center;
    width: 90%;
    margin-left: 5%;
    margin-top: 5%;
    margin-bottom: 5%;
}

input[type=text] {
    width: 100%;
    height: 2em;
    border-radius: 5px;
    margin-bottom: 0.5em;
    padding: 0.5em;
    font-size: 1em;
    font-family: bodyFont;

    &.city {
    width: 100%;
    }

    &.state {
    width: 60%;
    }

    &.zip {
    width: 60%;
    }

    &.phone {
    width: 60%;
    margin-bottom: 1em;
    }
}

input[type=checkbox] {
    height: 1.5vw;
    width: 1.5vw;
    accent-color:var(--secondary-color);
    cursor: pointer;
}

textarea {
    width: 100%;
    height: 10em;
    border-radius: 5px;
    resize: none;
    padding: 0.5em;
    font-size: 1em;
    font-family: bodyFont;
}

input[type=submit] {
    height: 3em;
    width: 90%;
    margin-top: 1em;
    margin-left: 5%;
    border-radius: 5px;
    font-size: 1em;
    background-color: var(--secondary-color);
    filter: drop-shadow(0px, 5px, 5px);
    cursor: pointer;
    }

#submitMsg {
  width: 50cqw;
  min-width: 300px;
  padding: 2cqw;
  border-radius: 10px;
  margin-bottom: 5vh;
  filter: drop-shadow(black 0px 5px 10px);
  background-color: var(--color-B);
  font-size: 1.1em;
  font-weight: 500;
}