:root {
  --white: white;
  --black: black;
}

.body {
  background-color: #f5f5f5;
}

.form {
  text-align: left;
  background-color: rgba(255, 255, 255, 0);
  margin-bottom: 25px;
  padding: 40px 220px 20px;
}

.section {
  background-color: #fff;
  min-height: 100vh;
  padding-top: 30px;
  padding-bottom: 40px;
}

.image {
  text-align: center;
  margin-bottom: 30px;
}

.container {
  text-align: center;
}

.text-block {
  color: #000;
  text-align: center;
  font-family: Lato, sans-serif;
}

.submit-button {
  background-color: #ff0e0e;
  border-radius: 5px;
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.submit-button:hover {
  background-color: #000;
}

.field-label {
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.field-label-2 {
  font-family: Lato, sans-serif;
  font-size: 16px;
}

.select-field {
  background-color: #f3f3f3;
  font-family: Lato, sans-serif;
}

.error-message {
  z-index: 2;
  background-color: #f5f5f5;
  margin-top: 0;
  padding-bottom: 0;
  position: absolute;
  top: 0%;
  bottom: -64%;
  left: 0%;
  right: 0%;
}

.text-block-2 {
  padding-top: 215px;
  font-family: Lato, sans-serif;
  font-size: 18px;
  line-height: 25px;
}

.link {
  color: #000;
}

.textarea {
  font-family: Lato, sans-serif;
}

@media screen and (max-width: 991px) {
  .form {
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media screen and (max-width: 767px) {
  .form {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media screen and (max-width: 479px) {
  .form {
    text-align: left;
    margin-left: 10px;
    margin-right: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .section {
    background-position: 35%;
  }

  .text-block {
    padding-left: 10px;
    padding-right: 10px;
  }
}


