@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');

.form__inner h3 {
  font-size: 40px;
  line-height: 45px;
  color: #004a53;
  margin-bottom: 20px;
  text-transform: capitalize;
  font-weight: bold;
  margin-top: 0px;
}
.form {
  margin: 0 auto;
}
.form-input {
  margin-bottom: 15px;
}
.form__inner label {
  font-size: 16px;
  line-height: 25px;
  margin-bottom: 5px;
  color: #333333;
  display: block;
}
.form__inner input[type="text"],
.form__inner input[type="email"],
.form__inner textarea {
  outline: none;
  width: 100%;
  font-size: 16px;
  line-height: 25px;
  padding: 12px 20px;
  margin-bottom: 15px;
  color: #333;
  padding: 12px 20px;
  font-family: inherit;
  text-align: left;
  -webkit-appearance: none;
  background: rgba(255, 154, 66, 0.02);
  display: grid;
  align-items: center;
  padding-left: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.form__inner textarea {
  height: 125px;
  resize: none;
  padding: 12px 15px;
  background: rgba(255, 154, 66, 0.02);
  display: grid;
  align-items: center;
  padding-left: 15px;
  border: 1px solid #ccc;
  border-radius: 3px;
}
.form__inner input[type="text"]:focus,
.form__inner input[type="email"]:focus,
.form__inner textarea:focus {
  border: 1px solid #fd5f00;
  background: #fff;
}

.btn-form {
    color: #fff;
    background-color: #004a53;
    border-color: #004a53;
    display: inline-block;
    border-radius: 4px;
    transition: 0.3s ease;
  }
  .btn-form:hover {
    color: #fff;
    background-color: #07636f;
    border-color: #004a53;
    transition: 0.3s ease;
  }

  .btn-form:focus, .btn-form.focus {
    color: #fff;
    background-color: #07636f;
    border-color: #000000;
    box-shadow: 0 0 0 0.1rem #000000;
  }
  .btn-form.disabled, .btn-form:disabled {
    color: #fff;
    background-color: #004a53;
    border-color: #004a53;
  }
  .btn-form:not(:disabled):not(.disabled):active, .btn-form:not(:disabled):not(.disabled).active, .show > .btn-form.dropdown-toggle {
    color: #fff;
    background-color: #07636f;
    border-color: #004a53;
  }
  .btn-form:not(:disabled):not(.disabled):active:focus, .btn-form:not(:disabled):not(.disabled).active:focus, .show > .btn-form.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.1rem #000000;
  }


@media all and (max-width: 590px) {
  .form-inner-cnt h3 {
    font-size: 30px;
  }
}
.status__msg {
	font-size: 16px;
  padding: 6px;
  border: 2px dashed;
  background: #fff;
  margin-bottom: 10px;
  margin-top: 5px;
}
.status__msg.error{
	color: #EA4335;
}
.status__msg.success{
	color: #34A853;
}

@media only screen and (min-width: 280px) and (max-width: 480px) {  
  .g-recaptcha{
    transform:scale(0.77);
    -webkit-transform:scale(0.77);
    transform-origin:0 0;
    -webkit-transform-origin:0 0;
    }
  }

