/* --- */
/* MSG ERRO */
/* --- */
.message {
    width: 100%;
    display: flex;
    text-align: center;
    justify-content: center;
    border-radius: 5px;
    border: 1px solid #000;
    background-color: #eee;
    padding: 10px;
    text-transform: uppercase;
    font-size: 0.9em;
    font-weight: 600;
    margin: 10px 0;
}

.message.warning {
    background-color: #fff3cd;
    color: #3e606d;
    border: 1px solid #cab15d;
}

.message.success {
    background-color: #d1e7dd;
    color: #19382a;
    border: 1px solid #4beba3;
}

.message.danger {
    background-color: #f8d7da;
    color: #461317;
    border: 1px solid #db8b92;
}

.message.alert {
    background-color: #cff4fc;
    color: #4b5132;
    border: 1px solid #5c9fad;
}