.notification {
    position: fixed;
    top: 10px;
    right: 10px;
    width: 300px;
    margin: 20px;
    padding: 16px;
    border-radius: 5px;
    font-size: 18px;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.notification.success {
    background-color: #408a42;
    color: #fff;
}

.notification.error {
    background-color: #a71e15;
    color: #fff;
}

.notification.active {
    opacity: 1;
}

.close-container {
    position: absolute;
    top: -8;
    right: -8;
    cursor: pointer;
}

.close-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgb(199 199 199);
    color: #000;
    text-align: center;
    line-height: 30px;
    font-size: 25px;
}
