/* Botão de abrir modal */
.open-modal {
    background-color: #FFFFFF;
    color: #6366F1;
    border: none;
    border-radius: 8px;
    padding: 20px 30px;
    font-size: 14px;
    cursor: pointer;
}

/* Fundo do modal */
dialog::backdrop {
    background-color: rgb(0, 0, 0, 0.5);
}

/* Modal */
dialog {
    border: none;
    border-radius: 24px;
    padding-left: 30px;
    padding-right: 30px;
    overflow-x: hidden;
    overflow-y: hidden;
}

/* Cabeçalho do modal */
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: left;
    margin-bottom: 16px;
}

/* Título do modal */
.modal-title {
    text-align:left;
    font-size: 20px;
    font-weight: 500;
}

/* Botão de fechar modal */
.close-modal {
    cursor: pointer;
    border: none;
    background-color: transparent;
    font-size: 18px;
}

/* Corpo do modal */
.modal-body {
    display: flex;
    flex-direction: column;
}

.modalnormal{
    width:450px; background:#ffffff;
}
.modalblue{
    width:450px; background:#0033A8;
}

