/*----------------------------------------*/
/*  19. Form
/*----------------------------------------*/
.form .group-input {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.form-field {
  width: 100%;
}

.form-field[class*='form-field']:not(:last-child) {
  margin-right: 30px;
}

.form-field .input-field,
.form-field .textarea-field {
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 3px;
  color: #000b;
  font-size: 15px;
  padding: 25px;
  width: 100%;
  height: 55px;
}

.form-field .input-field:focus,
.form-field .textarea-field:focus {
  background-color: transparent;
  border-color: #000;
}

.form-field .textarea-field {
  margin-top: 30px;
  height: 185px;
}

.form-btn {
  font-family: "Gordita";
  background-color: #1a2c99;
  border: 1px solid #1a2c99;
  border-radius: 10px;
  font-weight: 500;
  width: 200px;
  height: 60px;
  line-height: 57px;
  color: #ffffff;
  font-size: 14px;
}

.form-btn:hover {
  background-color: #f0582e;
  border-color: #f0582e;
}

.form-btn i {
  vertical-align: text-bottom;
  margin-left: 10px;
  font-size: 20px;
}

.form-btn-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.form-area {
  padding-top: 50px;
}

@media (min-width: 992px) {
  .form-wrap {
    padding-left: 100px;
    padding-right: 100px;
  }
}

.form-title {
  color: #0a1e43;
  font-size: 25px;
  line-height: 40px;
  margin-bottom: 35px;
}

@media (min-width: 768px) {
  .form-style-2 .form-wrap {
    padding-left: 115px;
    padding-right: 115px;
  }
}

.form-style-2 .form-field {
  margin-bottom: 20px;
}

.form-style-2 .form-field[class*='form-field']:not(:last-child) {
  margin-right: 0;
}

.form-style-2 .form-field .input-field,
.form-style-2 .form-field .textarea-field {
  border-color: #000;
}

.form-style-2 .form-field .input-field:focus,
.form-style-2 .form-field .textarea-field:focus {
  background-color: transparent;
  border-color: #1c2fa7;
}

.form-style-2 .form-field .textarea-field {
  margin-top: 0;
}

.form-style-2 .form-btn {
  background-color: #fff;
  border: 2px solid #000;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  letter-spacing: 3px;
  font-size: 18px;
  color: #000;
  float: right;
  border-radius: 0px;
}

.form-style-2 .form-btn:hover {
  background-color: #1a2c99;
  border: 1px solid #1a2c99;
}

.form-style-2 .form-btn i {
  vertical-align: text-bottom;
  margin-left: 10px;
  font-size: 20px;
}

.form-style-2 .form-btn-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-top: 20px;
  text-align: right;
}

.form-style-2 .form-messege {
  margin-top: 25px;
  margin-bottom: 0;
}

.form-style-2 .form-messege.error {
  color: red;
}

.form-style-2 .form-messege.success {
  color: green;
}