#dialogInput[open] {
    min-width: 30%;
    min-height: 30%;
    border-radius: var(--border-radius-padrao);
    box-shadow: var(--box-shadow-padrao);
    border: 3px solid rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: space-around;

    .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;
    }

    .botao_padrao:focus {
        border: none;
        outline: none;
    }

    .icone_enviar {
        width: 20px;
        height: auto;
        margin-right: 10px;
    }

    h2 {
        font-weight: 700;
        text-align: center;
        color: var(--cor-menu-selecionado);
    }

    p {
        text-align: left;
        font-size: 1.1rem;
        padding: 10px 25px;
    }

    .container-botoes-dialog {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
    }

}

#dialogInput::backdrop {
    background-color: rgba(0, 0, 0, 0.5);
    /*filter: blur(30px);*/
}