.contact .php-email-form1 {
    width: 100%;
    padding: 30px;
    background: #fff;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
  }
  
  .contact .php-email-form1 .form-group {
    padding-bottom: 8px;
  }
  
  .contact .php-email-form1 .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
  }
  
  .contact .php-email-form1 .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
  }
  
  .contact .php-email-form1 .error-message br+br {
    margin-top: 25px;
  }
  
  .contact .php-email-form1 .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
  }
  
  .contact .php-email-form1 .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
  }
  
  .contact .php-email-form1 .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    animation: animate-loading 1s linear infinite;
  }
  
  .contact .php-email-form1 .form-group {
    margin-bottom: 15px;
  }
  
  .contact .php-email-form1 label {
    padding-bottom: 8px;
  }
  
  .contact .php-email-form1 input,
  .contact .php-email-form1 textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
  }
  
  .contact .php-email-form1 input {
    height: 44px;
  }
  
  .contact .php-email-form1 textarea {
    padding: 10px 15px;
  }
  
  .contact .php-email-form1 button[type=submit] {
    background: #149ddd;
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
  }
  
  .contact .php-email-form1 button[type=submit]:hover {
    background: #37b3ed;
  }