/* Set the content dimensions */
 
#bookings {
    font-family: "ariasregular", sans-serif;
}
 
 
/* The Form */
 
#frmContact {
  color: #4C4C4C;
  background-color: #C6A0B4;
    -moz-border-radius: 10px;
  -webkit-border-radius: 10px;  
  border-radius: 10px;
    padding: 1.5em 1.5em 1.5em 1.5em;
  width: 70.212765957447%; /*660 / 940 */
  font-size: 1.2em;
  margin: 0 auto;
}
 
/* Dimensions and position of the status messages */
 
.error {
  text-align: center;
  margin: 0px;
  padding: 10px;
}

.success{
  background-color: #CFE3D1;
}

#mail-status {
      display:none; 
      font-size: 1em;
        padding: 1em;
        color: #4C4C4C;
        margin: 0 auto;
    }
 
/* Give form elements consistent margin, padding and line height */
 
#frmContact input, #frmContact .label {
  line-height: 1em;
}
 
/* The field labels */
 
.label {
  text-align: left;

  padding: .4em 0 .4em 0;
  font-family: "antonio-bold", sans-serif;
  color: #F9F8EA;
  margin: 0 auto;
}
 
 
/* The fields */

.field {


}
input, textarea {
  padding: .4em;
  background: #F9F8EA;
  border: 1px solid #C6A0B4;
  width: 95%;
  margin: 0 auto;
}
 
textarea {
  height: 13em;
  line-height: 1.5em;
  resize: none;

}
 
 
/* Place a border around focused fields, and hide the inner shadow */
 
#frmContact *:focus {
  border: 1px solid #808080;
  outline: none;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
}
 
/* Display correctly filled-in fields with a green background */
 
input:valid {
  background: #CFE3D1;/*#BAE0B8;*/
}

/* disable autocomplete background colour in Chrome */
input:-webkit-autofill {
    background: #BAE0B8;
}

/* The Send button */
 
.submit-button-holder button {
  margin: .5em .5em 0 .5em;
  width: 10em;
 font-family: "antonio-bold", sans-serif;
 text-transform:uppercase;
 letter-spacing: 0.05em;
 background: #F9F8EA;
}
    .submit-button-holder button:hover,
    .submit-button-holder button:active,
    .submit-button-holder button:hover,
    .submit-button-holder button:active {
    cursor: pointer;
    background: #808080;
    color: #F9F8EA;
}

.submit-button-holder button:active {
  background: #808080;
  color: #F9F8EA;
  -moz-box-shadow: 0 0 .1em rgba(0, 0, 0, .3) inset;
  -webkit-box-shadow: 0 0 .1em rgba(0, 0, 0, .3) inset;
  box-shadow: 0 0 .1em rgba(0, 0, 0, .3) inset;
}

.submit-button-holder {
    text-align: center;
}

[required] {
    box-shadow: none;
}

/* reCaptcha */
.recaptcha-holder {
  text-align: center;


}
.g-recaptcha {
display: inline-block;

}

@media screen and (max-height: 823px){
#rc-imageselect, .g-recaptcha { transform:scale(0.77);-webkit-transform:scale(0.77);transform-origin:0 0;-webkit-transform-origin:0 0;
  }
}
 
<!-- Some IE7 hacks and workarounds -->
 
<!--[if lt IE 8]>

/* IE7 needs the fields to be floated as well as the labels */
 
input, textarea {
  float: right;
}
 
.submit-button-holder{
  clear: both;
  text-align: center;
}

<![endif]-->