/* Estilo geral */
body {
    font-family: Arial, sans-serif;
    background-color: #f1f1f1;
    margin: 0;
    padding: 0;
}

/* Container do login */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #ddd;
}

.login-box {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
}

/* Logo */
.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.logo img {
    max-width: 100%; /* Limita o tamanho máximo da imagem */
    height: auto; /* Mantém a proporção da imagem */
}

h2 {
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 15px;
}

.input-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}

.input-group input {
    width: 100%;
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.remember-me {
    margin-bottom: 15px;
}

.remember-me input {
    margin-right: 5px;
}

.links {
    text-align: center;
    margin-bottom: 20px;
}

.links a {
    color: #0066cc;
    text-decoration: none;
}

.links a:hover {
    text-decoration: underline;
}

/* Contêiner que envolve os botões */
.buttons-container {
    display: flex;
    justify-content: center;
    gap: 20px; /* Espaçamento entre os botões */
    margin-top: 20px; /* Espaçamento superior */
}

/* Estilo individual para os botões, se necessário */
.btn-entrar, .btn-sair {
    padding: 10px 50px;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background-color: #4CAF50; /* Cor de fundo verde */
    border: none;
    border-radius: 5px;
}

.btn-sair {
    background-color: #f44336; /* Cor de fundo vermelha */
}

/* Adicionando estilos para centralizar a imagem na janela */
.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px; /* Espaçamento entre os botões e a imagem */
}

.imagem-modal {
    max-width: 25%; /* Garante que a imagem não ultrapasse a largura do contêiner */
    height: auto; /* Ajusta a altura proporcionalmente */
}
