body {
  font-family: Arial, Helvetica, sans-serif;
  width: 100%;
  height: 100%;
  padding: 0px;
  margin: 0px;
  background-color: #F4F7F3;
  margin-bottom: 10vw;
}

h1 {
  text-align: center;
}

.content-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5em;
  width: 66%;
  margin: 0 auto;
  margin-top: 20px;
}
.content-container .content-inner, .content-container .full-width {
  padding: 15px;
  background-color: white;
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.2);
}

.content-container.full-width {
  display: block;
}

input[type=text], input[type=date], input[type=number], input[type=email] {
  width: 100%;
  height: 30px;
  margin-bottom: 20px;
  padding: 10px;
  font-family: Arial, Helvetica, sans-serif;
}

#submit {
  background-color: #E12323;
  height: 5vw;
  border: none;
  color: white;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
}

fieldset {
  border: none;
  padding-inline-start: 0px;
  padding-block-start: 0px;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-block-end: 0px;
  padding-inline-end: 0px;
}

textarea {
  width: 100%;
  height: 30em;
  resize: none;
  font-family: Arial, Helvetica, sans-serif;
  padding: 0.5em;
}

.footer {
  background-color: white;
  width: 100%;
  height: 2em;
  display: flex;
  align-items: center;
  vertical-align: middle;
  justify-content: center;
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.2);
  bottom: 0px;
}
.footer a {
  color: #E12323;
  padding: 0em 1em 0em 1em;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
}

#form-count-hint {
  color: black;
  opacity: 65%;
  font-weight: bold;
  width: 100%;
  text-align: center;
}
#form-count-hint #form-count {
  color: #E12323;
}

.message {
  width: 100%;
  text-align: center;
  font-size: 1.5em;
  color: white;
  padding: 3px;
}

.error {
  background-color: red;
}

.warn {
  background-color: orange;
}

.info {
  background-color: green;
}

@media only screen and (max-width: 1000px) {
  h2 {
    margin-top: 0.2em;
  }

  .content-container {
    width: 100% !important;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    flex-flow: column;
    margin-bottom: 1.5em;
    text-align: left;
  }

  label {
    text-align: left;
  }

  #submit {
    height: 3em;
  }

  input[type=submit] {
    padding-top: 0.9em;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
  }
}

/*# sourceMappingURL=main.css.map */
