body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #043f66, #560777, #c77c04);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.container {
    background-color: rgba(90, 88, 88, 0.8);
    padding: 30px;
    border-radius: 10px;
    width: 80%;
    max-width: 1000px;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

label {
    flex: 1 1 45%;
    margin: 10px 0 5px;
    font-weight: bold;
}

input, select, button {
    flex: 1 1 45%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: none;
    font-size: 16px;
}

button {
    background-color: #27ae60;
    color: white;
    cursor: pointer;
}

button:hover {
    background-color: #2ecc71;
}

table {
    width: 100%;
    color: black;
    background-color: white;
    border-radius: 5px;
    overflow: hidden;
}

#informacoes {
    background-color: rgba(255, 255, 255, 0.9);
    color: black;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

#informacoes h2 {
    margin-top: 0;
}
