input.parsley-success,
select.parsley-success,
textarea.parsley-success {
  color: #555555;
  border: 1px solid #ccc;
}

input.parsley-error,
select.parsley-error,
textarea.parsley-error {
  color: #B94A48;
  background-color: #FFFFFF;
  border-color: #DF0100;
  outline: 0;
}

input.parsley-error:focus,
select.parsley-error:focus,
textarea.parsley-error:focus {    
    border-color:#DF0100;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 4px #DF0100;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 4px #DF0100;
}

.parsley-errors-list {
  margin: 2px 0 3px;
  padding: 0;
  list-style-type: none;
  font-size: 0.9em;
  opacity: 0;
  color: #DF0100;
  transition: all .3s ease-in;
  -o-transition: all .3s ease-in;
  -moz-transition: all .3s ease-in;
  -webkit-transition: all .3s ease-in;
}

.parsley-errors-list.filled {
  opacity: 1;
}
