body {
  background-color: #efefef;
}

@media (max-width: 1023px) {
  .global-header {
    background: white;
  }
}

.form {
  margin: 0 0 190px;
}

.page-heading {
  font-size: 50px;
  text-align: center;
  font-weight: bold;
  font-family: var(--sans-font);
  margin: 0 0 70px;
  color: #555555;
}

@media (max-width: 1023px) {
  .page-heading {
    margin: 20px 0;
  }
}

.btn {
  max-width: 400px;
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background: #333333;
  border-radius: 10px;
  color: white;
  font-weight: bold;
  font-size: 28px;
  font-family: var(--sans-font);
  cursor: pointer;

  opacity: 1;
}
.btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn.has-error {
  opacity: 0.6;
  cursor: not-allowed;
}
.error {
  display: none;
  color: #ff3333;
  font-size: 15px;
}
.error.-active {
  display: block;
}

.message-fatal {
  display: none;
}
.-fatal .message-fatal {
  display: block;
}
.message-fatal .heading {
  color: #ff3333;
  font-size: 35px;
  line-height: 1.5;
  text-align: center;
  font-weight: bold;
  font-family: var(--sans-font);
}
.message-fatal .text {
  color: #ff3333;
  font-size: 25px;
  line-height: 1.5;
  margin: 0 0 76px;
  text-align: center;
  font-weight: bold;
  font-family: var(--sans-font);
}

.message-sended {
  display: none;
}
.-sended .message-sended {
  display: block;
}
.message-sended .text {
  font-size: 25px;
  line-height: 1.5;
  margin: 0 0 76px;
  text-align: center;
  font-weight: bold;
  font-family: var(--sans-font);
  color: #555555;
}

.input-form {
  max-width: 740px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.-sended .input-form,
.-fatal .input-form {
  display: none;
}

.input-group {
  margin: 0 0 40px;
}

@media (max-width: 1023px) {
  .input-group {
    margin: 0 0 20px;
  }
}

.input-label {
  font-family: var(--sans-font);
  font-size: 25px;
  font-weight: bold;
  color: #555;
}

.input-label span {
  color: #01e369;
  margin-left: 0.25em;
}

.must .input-label span::before {
  color: #555;
  content: "*";
  margin-right: 0.25em;
}

.input-value input[type="text"],
.input-value textarea {
  font-family: var(--sans-font);
  width: 100%;
  border: 0;
  border-radius: 0;
  display: flex;
  align-items: center;
  padding: 20px;
  font-size: 30px;
  color: #555555;
}

.input-value input[type="text"].-has-error,
.input-value textarea.-has-error {
  background-color: #ffcdcd;
  box-shadow: 0 0 3px #ff3333;
}

.recaptcha {
  margin: 80px 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 700px) {
  .page-heading {
    font-size: 22px;
  }

  .input-label {
    font-size: 10px;
  }

  .input-value input[type="text"] {
    font-size: 15px;
    padding: 10px;
  }
  .input-value textarea {
    font-size: 15px;
    padding: 10px;
  }

  .btn {
    height: 40px;
    font-size: 15px;
    width: 220px;
  }

  .message-fatal .heading {
    font-size: 15px;
  }
  .message-text .heading {
    font-size: 10px;
  }
  .message-sended .text {
    font-size: 15px;
  }
}
