body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url('background3.jpg'); /* Nome do arquivo da imagem na mesma pasta */
    background-size: cover;
    background-position: center;
    opacity: 0.8; /* Opacidade para a imagem de fundo */
    width: 100%;
}


#cpfInput {
    font-size: 20px; /* Tamanho da fonte do campo CPF */
}


.container {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.9); /* Cor de fundo para a área de conteúdo */
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

input {
    margin-bottom: 10px;
    padding: 10px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

button {
    padding: 10px;
    background-color: #4CAF50; /* Cor verde para os botões */
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #45a049; /* Cor verde mais escura no hover */
}

.dialog-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.9); /* Cor de fundo para o diálogo */
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.dialog-container h2 {
    margin-bottom: 10px;
}

.dialog-container ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}


.dialog-container li {
    margin-bottom: 5px;
}

#resultado {
    margin-top: 20px;
    text-align: left;
}

#resultado button {
    display: inline-block; /* Mostra os botões em linha */
    margin: 0 5px; /* Adiciona um espaçamento entre os botões */
}

.dialog-windows {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-width: 80%;
    font-family: Arial, sans-serif;
}

.dialog-windows h2 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.dialog-windows ul {
    list-style-type: none;
    padding: 0;
}

.dialog-windows li {
    margin-bottom: 5px;
}

.dialog-windows button {
    margin-top: 10px;
    padding: 5px 10px;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.dialog-windows button:hover {
    background-color: #4CAF50;
}
