.alert-erro, .alert-success{
    background: #3c414d8b;
    width: calc(100%);
    height: calc(100%);
    position: absolute;
    z-index: 9999;
    top: 0;
    left: 0;
}

.alert-erro > div, .alert-success > div{
    top: 50%;
    gap: 10px;
    left: 50%;
    width: 350px;
    height: 224px;
    display: flex;
    z-index: 9999;
    position: absolute;
    color: #001B38;
    border-radius: 12px;
    background: #FFFFFF;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    transform: translate(-50%, -50%);
}

.alert-erro > div > div, .alert-success > div > div{
    gap: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 15px;
    text-align: center;
}

.alert-erro > div > div > h2, .alert-success > div > div > h2{
    font-weight: 500 !important;
    font-size: 20px;
}

.alert-confirm-modal{
    font-weight: 400;
    text-align: center;
}
.alert-confirm-modal > div:first-child > h1{
    font-size: 24px;
    color: var(--cor-2);
}

.alert-confirm-modal > div:first-child > p{
    font-size: 20px;
    color: #6C6666;
}

.alert-confirm-modal > div:nth-child(2){
    padding: 15px;
    background-color: #F2F2F2;
    border-radius: 0 0 12px 12px;
}
