/* Reset e estilo global */
body {
    background: #f9f9f9;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Cabeçalho */
header {
    background-color: #007BFF;
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Menu antigo (horizontal) */
.menu {
    background-color: #0056b3;
    padding: 10px 20px;
}

.menu a {
    color: white;
    text-decoration: none;
    margin-right: 20px;
    font-weight: bold;
    transition: color 0.3s;
}

.menu a:hover {
    color: #ffc107;
}

/* Títulos */
h2 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

/* Container principal */
.container {
    max-width: 500px;
    background: #fff;
    margin: 40px auto;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Labels */
label {
    display: block;
    margin-top: 15px;
    color: #555;
}

/* Inputs */
input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"],
input[type="date"],
input[type="file"],
textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: border-color 0.3s;
}

input:focus,
textarea:focus {
    border-color: #007BFF;
    outline: none;
}

/* Botões */
button {
    width: 100%;
    padding: 12px;
    background-color: #007BFF;
    border: none;
    color: white;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0056b3;
}

/* Login container */
.login-container {
    width: 100%;
    max-width: 400px;
    margin: 100px auto;
    background: #ffffff;
    padding: 30px 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
}

/* Mensagens */
.mensagem {
    text-align: center;
    color: green;
    margin-top: 10px;
}

.erro, .error {
    text-align: center;
    color: red;
    margin-top: 10px;
}

/* Lista */
ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    margin-bottom: 10px;
    background: #f8f9fa;
    padding: 10px;
    border-left: 4px solid #007BFF;
}
