/*
Alert box styling
 */
.alert-box {
    background-color: #EEE;

    border-color: #BBB;
    border-style: solid;
    border-width: 2px;
    border-radius: 7px;

    padding-top: 5px;
    padding-right: 20px;
    padding-bottom: 5px;
    padding-left: 20px;

    margin-top: 10px;
    margin-bottom: 10px;
}
.alert-box > strong {
    font-weight: 700;
    margin-right: 10px;
}
.alert-box.alert-success {
    background-color: #d8ffd3 !important;
    color: #1a6627 !important;
    border-color: #1a6627 !important;
}
.alert-box.alert-fail {
    background-color: #ffd3d3 !important;
    color: #661a1a !important;
    border-color: #661a1a !important;
}