body {
    background: url('https://blog.ead.unipar.br/wp-content/uploads/2021/04/inovacao-e-tecnologia.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

.login-container {
    background: transparent;
    text-align: center;
}

.card {
    background: rgba(0, 0, 0, 0.5); /* Fundo preto mais transparente */
    width: 300px;
    height: 400px;
    margin: 0 auto;
    padding: 45px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    color: #fff;
    border-radius: 15px; /* Adicione a borda arredondada */
}

.glpi-logo {
    background: url('glpi-logo.png') no-repeat center;
    background-size: contain;
    height: 100px;
    margin-bottom: 20px;
}

.login-form h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

input[type="text"], input[type="password"] {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    outline: none;
}

button {
    background: #0073e6;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background: #005bb9;
}
