#dialogAlerta[open] {
    min-width: 30%;
    min-height: 25%;
    border-radius: var(--border-radius-padrao);
    box-shadow: var(--box-shadow-padrao);
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    max-width: 60%;
    padding: 0;
    margin: auto;
    background: var(--cor-primaria);
    color: white;

    .weak-text{
        padding: 10px;
    }

    .botao_padrao {
        background-color: var(--cor-menu-selecionado);
        font-weight: 700;
        color: #FFFFFF;
        border-radius: var(--border-radius-padrao);
        border: none;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        box-shadow: var(--box-shadow-padrao);
        height: 35px;
        width: 175px;
        /* align-self: end; */
        margin-bottom: 20px;
    }

    .botao_padrao:focus {
        border: none;
        outline: none;
    }

    .icone_enviar {
        width: 20px;
        height: auto;
        margin-right: 10px;
    }

    h2 {
        font-weight: 700;
        text-align: center;
        font-size: 25px !important;
        color: white;
        font-family: 'Poppins', sans-serif !important;
        margin-top: 10px;
    }

    p {
        text-align: center;
        font-size: 15px;
    }

    .alert-header{
        width: 100%;
        color: var(--cor-azul-claro);
        background-color: var(--cor-terciaria);
        padding: 10px;
        display: flex;
        flex-direction: row;
        position: relative;
    }

    .botao_dialog {
        /* padding: 23px; */
        background-color: #0E0E0E !important;
        font-weight: 700;
        color: #FFFFFF;
        border-radius: var(--border-radius-padrao);
        border: none;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        box-shadow: var(--box-shadow-padrao);
        height: 43px;
        width: 178px;
        align-self: center !important;
        gap: 17px;
        margin: 15px;
    }
    .close {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        text-align: center;
        font-size: 16px;
        font-family: 'Poppins', sans-serif;
        cursor: pointer;
        position: absolute;
        top: 5px;
        right: 5px;
        z-index: 10;
        background-color: white;
        border: 1px;
        color: #000;
        font-weight: 700;
    }
    .close:hover{
        color: red;
        cursor: pointer;
    }

}

#dialogAlerta::backdrop {
    background-color: rgba(0, 0, 0, 0.5);
    /*filter: blur(30px);*/
}

@media (max-width: 768px){
    #dialogAlerta[open]{
        max-width: 80%;
        min-height: 30%;
        min-width: initial;
    }
}