/* CÓDIGO ATUALIZADO PARA static/css/login.css */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-image: url('../images/fundologin.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #333;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-container {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 380px; /* Aumentei um pouco para caber os logos */
    text-align: center;
}

/* NOVO ESTILO PARA O CONTÊINER DOS LOGOS */
.logo-wrapper {
    display: flex; /* Alinha os itens (logos) em linha */
    justify-content: center; /* Centraliza os logos horizontalmente */
    align-items: center; /* Alinha os logos verticalmente (caso tenham alturas diferentes) */
    gap: 30px; /* Cria um espaço entre os logos */
    margin-bottom: 20px; /* Empurra o título para baixo */
}

/* ESTILO AJUSTADO PARA CADA LOGO */
.logo {
    max-width: 130px; /* Reduzi um pouco para caberem lado a lado */
    max-height: 60px; /* Define uma altura máxima para normalizar o tamanho */
    object-fit: contain; /* Garante que a imagem não seja distorcida */
}

h2 {
    margin-bottom: 25px;
    color: #2c3e50;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1rem;
}

button {
    width: 100%;
    padding: 12px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #2980b9;
}

.flash-error {
    background-color: #f8d7da;
    color: #721c24;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 20px;
    border: 1px solid #f5c6cb;
}