
.alert-box {
    position: fixed;
    width: 60%;
    left: 20%;
    right: 20%;
    bottom: 0;
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
    z-index: 11;
}

.alert {
    position: absolute;
    width: 100%;
    bottom: -100px;
    padding: 20px;
    background-color: #2196F3;
    color: white;
    opacity: 1;
    transition: bottom 0.6s ease-in-out;
    margin-bottom: 15px;
    border-radius: 10px;
}
  
.alert.success {background-color: #04AA6D;}
.alert.info {background-color: #5c2d78;}
.alert.error {background-color: #f44336;}
.alert.warning {background-color: #ff9800;}

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

.closebtn:hover {
    color: #8f8d8d;
}

.alert > a {
    color: #02c4c4;
    text-decoration: none;
    transition: color 0.3s ease-in-out; 
}

.alert > a:hover {
color: #00e8e8;
}
