
/* Plano de fundo com imagem */
body {
    background-image: url('images/BACKGROUD.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    font-family: Arial, sans-serif;
    color: #333333;
}

header {
    display: flex;
    justify-content: center;
    padding: 20px;
    background-color: #003366;
}

header .logo img {
    width: 150px;
    height: auto;
}

h1 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.buttons {
    margin: 20px 0;
}

.buttons a {
    text-decoration: none;
    padding: 10px 20px;
    background-color: #003366;
    color: white;
    border-radius: 5px;
    margin-right: 10px;
}

.buttons a:hover {
    background-color: #00509e;
}

button {
    padding: 10px 20px;
    background-color: #003366;
    color: white;
    border: none;
    border-radius: 5px;
}

button:hover {
    background-color: #00509e;
}

form {
    display: flex;
    flex-direction: column;
}

form label {
    margin: 10px 0 5px;
}

form input, form select {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
