body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #121212;
    font-family: Arial, sans-serif;
    color: #fff;
}

.login-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.login-logo img {
    max-width: 300px; /* Aumente de 200px para 300px */
    height: auto;
}

.login-form {
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.login-form h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

.login-form input[type="text"],
.login-form input[type="password"] {
    width: calc(100% - 20px);
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #333;
    border-radius: 5px;
    background-color: #2e2e2e;
    color: #fff;
}

.login-form button {
    background-color: #ff9800;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    margin: 20px 0;
}

.login-form button:hover {
    background-color: #e68900;
}

.login-form a {
    color: #ff9800;
    text-decoration: none;
}

.login-form a:hover {
    text-decoration: underline;
}

.login-form label {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 14px;
    margin: 10px 0;
}

.login-form label input[type="checkbox"] {
    margin-right: 10px;
}
