body {
    margin: 0;
    padding: 0;
    background-color: #1c2a31; /* fundo escuro da identidade */
    font-family: Arial, sans-serif;
    color: white;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    text-align: center;
}

.logo {
    width: 120px;
    margin-bottom: 20px;
}

.login-box {
    background-color: #2a3b44;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 300px;
}

.login-box h2 {
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
}

form {
    width: 100%;
    display: flex;
    flex-direction: column;
}

label {
    text-align: left;
    margin-bottom: 5px;
}

input[type="text"],
input[type="password"] {
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
}

button {
    padding: 10px;
    background-color: #007bff;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background-color: #0056b3;
}
