/* alert message section starts */
.alert{
    position: absolute;
    top: 4rem;
    right: 2rem;
    width: auto;
    padding: .7rem;
    margin-bottom: .5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
    border-radius: .5rem;
    z-index: 1000;
}
.alert span{
    font-size: 1.2rem;
    color:#fff;
}
.alert i{
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
}
.alert.alert-red{
    background-color: #f2495a;
}
.alert.alert-green{
    background-color: #06b84a;
}
.alert.alert-yellow{
    background-color: #ffc107;
}
/* end of alert message */
