 
/*FORM*/
 
.contact-form input[type="text"], .contact-form input[type="password"], .contact-form textarea, .contact-form select {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font: 17px sans-serif;
  line-height: 24px;
  padding: 14px 18px ;
  color: #333;
  background-color: #fff;
  border: 2px solid #fff;
  width: 100%;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
   margin: 0 0 20px 0; 
  border-radius: 10px;  
  box-shadow: 3px 3px 20px 0 rgb(0 0 0 / 2.5%);
}

.contact-form textarea{ height: 400px;}
.contact-form input[type="text"]:focus, .contact-form textarea:focus{  border: 2px solid #337de3;}
  
 
.forgotten-password-link {
  float: left;
  margin-top: 40px;
}

/*FORGOTTEN PASSWORD*/
.forgotten-password-box, .error-box {
   border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  -moz-border-bottom-left-radius: 3px;
  -moz-border-bottom-right-radius: 3px;
}

.forgotten-password-box {
  display: none;
  height: 130px;
  background-color: #f2f2f2;
}

.forgotten-password-box input[type="text"]  {
  margin: 20px 10px 0 0;
  width: 213px;
}

/*TERMS AND CONDITIONS*/
#tac-checkbox, label, .forgotten-password-link {
  float: left;
  margin-top: 40px;
}

label {
  line-height: 12px;
  padding-left: 5px;
}

.sign-link {
  text-align: center;
  float: left;
  margin: 40px 0 0 120px;
}

/*ERROR STATES*/
.error-box {
  display: none;
  height: 70px;
  color: #fff;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
}

.error-message {
  float: left;
  margin: 24px 0 0 30px;
}

.red {
  background-color: #d03e3e;
}

.green {
  background-color: #72d03e;
}

.success-message {
  line-height: 60px;
  margin: 30px 0 0 30px;
}

.ipt-error {
  background-color: #f4b4b4 !important;
  border: 1px solid #d03e3e !important;
  color: #333 !important;
}

.ipt-error::-webkit-input-placeholder {
    color:    #d03e3e;
}
.ipt-error:-moz-placeholder {
    color:    #d03e3e;
}
.ipt-error::-moz-placeholder {
    color:    #d03e3e;
}
.ipt-error:-ms-input-placeholder {
    color:    #d03e3e;
}

/*PLACEHOLDERS FOR IE BROWSER*/
.ie-placeholders {
  display: none;
}

/*COLOR SCHEMES*/
 
/*Red*/
.btn-red {
  background-color: #e42a2a; 
  border: 0px ;
  color:#FFF;
}

.btn-red:hover {
  background-color: #ca0000; 
}
 
 
 
