form fieldset, form {
    position: relative;
/*
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
*/
}
.form.wait {
    opacity: 0.25;
}
#wait {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}
#wait div {
    position: absolute;
    left: 50%;
    top: 10%;
    width: 50px;
    height: 50px;
    margin: -25px 0 0 -25px;
}
#wait div i {
    text-align: center;
    line-height: 50px;
    font-size: 50px;
    color: #44c8cc;
}
.error {
}
.error input, .error textarea, button.error {
    border-color: #f00 !important;
}
.success_message {
    font-size: 1.5rem;
    text-align: center;
}
.success_message p {
    margin-bottom: 1rem;
}
.error_message {
    padding: 10px;
    background: #f00;
    border-radius: 3px;
    color: #fff;
    font-size: 1.6rem;
}
.success_message a, .success_message a:visited, .error_message a, .error_message a:visited {
    color: #fff;
    text-decoration: underline;
}
.success_message a:hover, .success_message a:focus, .error_message a:hover, .error_message a:focus {
    opacity: 0.5;
}
