h1 {
  font-size: 24px;
}

.terms {
  text-decoration: underline;
}
.terms a {
  color: #212529;
}

.sign-in a {
  color: #212529;
  text-decoration: underline;
}

.contact-form-section {
  max-width: 400px;
  margin: auto;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.contact-form-section .form-container .submit-btn {
  background: #1A443D;
  box-shadow: none;
  border: none !important;
  color: #fff;
  width: 240px;
  float: none;
}
.contact-form-section .form-container .form-control {
  border: 1px solid #E1E1E1;
  padding: 10px 15px;
  border-radius: 4px;
  box-shadow: none !important;
  font-size: 14px;
}
.contact-form-section .form-container textarea {
  height: 85px;
}
.contact-form-section .form-container label {
  font-family: "Inter-SemiBold";
}
.contact-form-section ::-moz-placeholder {
  color: #D9D9D9;
  opacity: 1;
}
.contact-form-section ::placeholder {
  color: #D9D9D9;
  opacity: 1;
}
.contact-form-section ::-ms-input-placeholder {
  color: #D9D9D9;
}

.checkbox-container {
  display: block;
  position: relative;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  padding-left: 25px;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 5px;
  left: 0;
  height: 18px;
  width: 18px;
  border: 1px solid #000;
  border-radius: 3px;
}

.checkbox-container:hover input ~ .checkmark {
  background-color: #ebeeed;
}

.checkbox-container input:checked ~ .checkmark {
  border-color: #1a443d;
  background-color: #1a443d;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 6px;
  top: 1px;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0px 2px 2px 0px;
  transform: rotate(45deg);
}

@media screen and (max-width: 1440px) {
  .contact-form-section {
    padding: 0px 50px;
  }
}
@media screen and (max-width: 991px) {
  .contact-form-section {
    margin-top: 30px;
    padding: 0;
    max-width: 400px;
    margin: auto;
    position: initial;
    transform: none;
  }
  .signup-img {
    margin: auto;
    display: table;
  }
}
