/* estilo.css */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #667eea, #764ba2);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    justify-content: flex-start;
}

h1, h2 {
    text-align: center;
    margin-top: 40px;
}

p {
    font-size: 1.1em;
    text-align: center;
}

table {
    border-collapse: collapse;
    background: #ffffff10;
    border-radius: 10px;
    overflow: hidden;
}

table, th, td {
    border: 1px solid #ffffff33;
    padding: 10px 15px;
    color: #fff;
}

a.botao, button {
    background-color: #fff;
    color: #333;
    padding: 12px 25px;
    border: none;
    border-radius: 10px;
    font-size: 1em;
    text-decoration: none;
    margin: 10px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

a.botao:hover, button:hover {
    background-color: #f2f2f2;
    transform: scale(1.05);
}

input[type="text"], input[type="radio"] {
    margin: 5px 0;
    padding: 8px;
    border-radius: 6px;
    border: none;
    font-size: 1em;
    width: 100%;
    max-width: 400px;
}

form {
    width: 90%;
    max-width: 500px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
}
