@font-face {
  font-family: "Rockwell";
  src: url("fonts/rockb.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Regular";
  src: url("fonts/Barlow-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Bold";
  src: url("fonts/Barlow-Bold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* {
  font-family: "Barlow Regular";
  margin: 0;
  padding: 0;
}

html {
  overflow-y: auto;
  overflow-x: hidden;
}

body {
  height: 100vh;
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.content-image {
  width: 100%;
  background-image: url("../resources/top.png");
  padding: 100px 0;
  text-align: center;
  background-size: cover;
}

@media (max-width: 767px) {
  .content-image {
    padding: 20px 0;
  }
}

.content-image img {
  width: 100%;
  max-width: 300px;
}

@media (max-width: 767px) {
  .content-image img {
    max-width: 150px;
  }
}

.content-form {
  background-image: url("../resources/middle.png");
  padding: 50px 0;
  background-size: cover;
  margin: -1px 0;
}

.content-form form {
  width: 50%;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .content-form form {
    width: calc(100% - 50px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.content-form form .form-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 90%;
}

.content-form form .form-block:first-child label {
  margin-top: 0;
}

@media (max-width: 767px) {
  .content-form form .form-block {
    width: 100%;
  }
}

.content-form form .form-block input,
.content-form form .form-block select {
  border: 0.6px solid white;
  border-radius: 5px;
  padding: 10px;
  background: transparent;
  color: white;
  font-size: 19px;
  width: 100%;
}

.content-form form .form-block select option {
  width: 100%;
  background: #2c2b29;
  padding: 50px 0;
}

.content-form form .form-block input {
  width: calc(100% - 20px);
}

.content-form form .form-block input[type="date"]::-webkit-calendar-picker-indicator, .content-form form .form-block input[type="time"]::-webkit-calendar-picker-indicator {
  -webkit-filter: invert(1);
          filter: invert(1);
}

.content-form form .form-block label {
  color: white;
  font-size: 25px;
  margin-bottom: 5px;
  width: 100%;
  margin: 20px 0 10px;
}

.content-form form .form-block label span {
  font-size: 17px;
}

.content-form form .submit-block {
  text-align: center;
  margin-top: 20px;
}

.content-form form .submit-block button {
  background-color: white;
  font-family: "Rockwell";
  color: #2c2b29;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 19px;
  border: none;
  cursor: pointer;
}

.content-form form .submit-block button[disabled="disabled"], .content-form form .submit-block button:disabled {
  background-color: #2c2b29;
  font-family: "Rockwell";
  color: white;
  cursor: not-allowed;
}

.modal-response {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: white;
  padding: 50px;
  border-radius: 5px;
  width: 400px;
  max-width: calc(90% - 100px);
}

.modal-response .close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
}

.modal-response.active {
  display: block;
}

.modal-response.correct {
  background-color: #85f39c;
  color: #119211;
}

.modal-response.error {
  background-color: #f96f65;
  color: #ae0505;
}

.modal-response p {
  font-size: 25px;
}

footer {
  width: 100vw;
  background-image: url("../resources/bottom.png");
  padding: 100px 0;
}
/*# sourceMappingURL=style.css.map */