:root{
    --degrade: linear-gradient( to bottom right, #0052ec, #537cf9);
}

header{
    width: 100%;
    height: 3.12rem;
    background-color: #004FE7;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    
}

header a{
    color: white;
    text-decoration: none;
    font-size: 20px;
}

header a:hover{
    background-color: rgb(43, 181, 255);
    padding: 0.85rem;
    transition: 0.3s;
}
 

.container-header{
    width: 100%;
    height: 5rem;
    background-color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 12rem;
}




body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
    background-color: white;
}

.cadastro {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    border: black 15px;

}

h1 {
    text-align: center;
}


.form-group {
    margin-bottom: 10px;
}

label {
    display: block;
    font-weight: bold;
}

input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button[type="submit"] {
    display: block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #0056b3;
}

/* Estilos da tabela */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #007bff;
    color: #fff;
}

footer {
    background-image: var(--degrade); 
    color: #fff; 
    padding: 0.5rem; 
    text-align: center;
}

footer a {
    color: #fff; 
    text-decoration: none; 
    gap: 1rem;
}

footer a:hover {
    text-decoration: underline;
}

.foot{
    padding: 3rem;
}