input.parsley-success,
select.parsley-success,
textarea.parsley-success {
    padding: 2rem;
    font-size: 1.8rem;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #000;
    border-radius: 15px;
    background-color: #fff;
    height: 7rem;
    border: none;
}

input.parsley-error,
select.parsley-error,
textarea.parsley-error {
    color: #FF0000 !important;
    background-color: #FFE6E6 !important;
    border: 1px solid #FF7272 !important;
}

input.parsley-error::placeholder,
textarea.parsley-error::placeholder {
    color: #FF0000;
}

.parsley-errors-list {
    margin: 12px 0 3px;
    padding: 0;
    list-style-type: none;
    font-size: 13px;
    line-height: 0.9em;
    opacity: 0;
    color: #FF7272;
    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;
}