/***** Structure *****/
.notice {
    position: relative;
}
.notice  {
    margin-bottom: 20px;
}
.notice  {
    background-color: var(--primary);
}
.notice  {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.notice  {
    padding: 20px;
}
.notice div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.notice div {
    font-family: 'content-font';
    font-size: 14px;
    color: #fff;
}
.notice div svg {
    width: 20px;
    height: auto;
}

/***** Successful *****/
#successful div svg {
    background: #79ffa8;
    border-radius: 50%;
}

/***** Unuccessful *****/
#unsuccessful div svg {
    background: crimson;
    border-radius: 50%;
}