/*------------- Alerts ---------------------------------------*/
/* The alert message box */
.alert {
    padding: 20px;
    color: white;
    display: none;
}

/* The close button */
.closebtn {
    margin-left: 15px;
    color: white;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}

/* When moving the mouse over the close button */
.closebtn:hover {
    color: black;
}

.alert.error {
    background-color: #f44336; /* Red */
}

.alert.success {
    background-color: #39f45b; /* Red */
}

.alert.warning {
    background-color: #f4bd23; /* Red */
}