 /* The alert message box */
.alert {
    padding: 20px;
    color: white;
    margin-bottom: 15px;
}

.alert-error {
    background-color: #f66358; /* Red */
}

.alert-success {
    background-color: #6abc6e; /* Green */
}

.alert-info {
    background-color: #46a8f5; /* Blue */
}

.alert-warning {
    background-color: #ffa92b; /* Orange-Yellow */
}

/* The close button */
.closebtn {
    margin-left: 15px;
    color: white;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 1.0s;
}

/* When moving the mouse over the close button */
.closebtn:hover {
    color: black;
} 
