body {
    background: #f0f8f4;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    text-align: center;
    padding: 50px;
}

.login-container {
    background: #ffffff;
    border-radius: 10px;
    padding: 40px;
    width: 350px;
    margin: 80px auto;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.login-container h1 {
    color: #2e7d32; /* Verde escuro */
    margin-bottom: 10px;
}

.login-container h2 {
    color: #388e3c; /* Verde médio */
    margin-bottom: 30px;
    font-size: 18px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input[type="text"],
input[type="password"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button[type="submit"] {
    padding: 10px;
    background-color: #4caf50; /* Verde padrão */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #388e3c; /* Verde escuro ao passar o mouse */
}

.mensagem-erro {
    color: red;
    margin-bottom: 15px;
    font-weight: bold;
}
.links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.links a {
    text-decoration: none;
    padding: 10px 20px;
    background-color: #4caf50; /* Verde principal */
    color: white;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.links a:hover {
    background-color: #388e3c;
    transform: scale(1.05);
}
