/* default.css без @import */

/* Сообщения формы */
.af-message-success { 
    background-color: green !important; 
}
.af-message-error { 
    background-color: brown !important; 
}
.af-message-info { 
    background-color: black !important; 
}

/* Общие стили формы */
.ajax_form.af_example {
    width: 100%;
}

.ajax_form.af_example .controls input,
.ajax_form.af_example .controls textarea {
    width: 100%;
}

.ajax_form .error {
    color: brown;
}

/* Кнопки для разных экранов */
@media screen and (min-width: 320px) {
    .ajax_form.af_example .controls button[type="submit"] {
        float: right;
    }
}

@media screen and (max-width: 320px) {
    .ajax_form.af_example .controls button {
        width: 100%;
        margin-top: 5px;
    }
}