.alert {
    display: none;
    font-size: 13px;
    padding: 9px;
}
.alert {
    text-shadow: 0 1px 0 rgb(255 255 255 / 20%);
    -webkit-box-shadow: inset 0 1px 0 rgb(255 255 255 / 25%), 0 1px 2px rgb(0 0 0 / 5%);
    box-shadow: inset 0 1px 0 rgb(255 255 255 / 25%), 0 1px 2px rgb(0 0 0 / 5%);
}
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid inherit;
    border-radius: 4px;
}

.alert-success {
    background-image: -webkit-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);
    background-image: linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);
    background-repeat: repeat-x;
    border-color: #b2dba1;
}
.alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}
.alert-warning {
    background-image: -webkit-linear-gradient(top, #dc7d92 0%, #dc7d92 100%);
    background-image: linear-gradient(to bottom, #dc7d92 0%, #dc7d92 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);
    background-repeat: repeat-x;
    border-color: #dc7d92;
}
.alert-warning {
    color: #3e0311;
    background-color: #f06b8b;
    border-color: #dc7d92;
}

.text-danger {
    color: red;
    font-size: 13px;
}