@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');

/*sucess*/

.alerteS {
    max-width: 300px;
    padding: 15px 25px;
    position: absolute;
    top: 15px;
    right: 15px;
    transform: translateX(200%);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    border: none;
    border-radius: 15px;
    background-color: rgb(54, 200, 95);
    transition: all 0.5s;
}

.alerteS h2 {
    padding-right: 40px;
    word-wrap: break-word;
    font-family: Roboto;
}

.error-icon {
    height: 80px;
    width: 80px;
}

/*alerte box*/

.alerte {
    max-width: 300px;
    padding: 15px 25px;
    position: absolute;
    top: 15px;
    right: 15px;
    transform: translateX(200%);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    border: none;
    border-radius: 15px;
    background-color: rgb(162, 33, 33);
    transition: all 0.5s;
}

.cross-alerte {
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
}

.alerte h2 {
    padding-right: 40px;
    word-wrap: break-word;
    font-family: Roboto;
}

.error-icon {
    height: 80px;
    width: 80px;
}

.show {
    transform: translateX(0px) !important;
    transition: all 0.5s;
}