body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    background-image: url(pages_images/frontlever.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

section {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 1);
    margin: 20px;
    padding: 20px;
    width: 100%;
    max-width: 600px;
}

.tittleCadastro {
    text-align: center;
    margin-bottom: 40px;
    font-size: 6.5em;
    color: black;
    text-shadow: 2px 2px 5px gray;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.01);
    }
    100% {
        transform: scale(1);
    }
    
}

.tittleBasic {
    text-align: center;
    margin-bottom: 40px;
    font-size: 3.0em;
    color: black;
    text-shadow: 2px 2px 5px gray;
    animation: pulse 1.5s infinite;
}

table {
    font-size: 1.5em;
    width: 100%;
    margin-bottom: 20px;
}

td {
    padding: 10px 0;
}

label {
    font-size: 20px;
    cursor: pointer;
}

input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background-color: blue;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: block;
    width: 100%;
    margin-top: 20px;
}

button:hover {
    background-color: gray;
}

.class {
    background-color: #f9f9f9;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
    flex-direction: row;
    align-items: center;
}

class label {
    margin-bottom: 10px;
    color: #555;
    flex: 1;
    font-size: 16.5px;
}