/* ==========================================================================
   ESTILO DE LOGIN - estilos/estilo_login.css
   ========================================================================== */
body { 
    font-family: 'Calibri', 'Segoe UI', Arial, sans-serif; 
    background-color: #ffffff; 
    margin: 0; 
    padding: 20px;
    box-sizing: border-box;
    color: #333333;
    min-height: 100vh; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
}

/* Contentor Geral (Logo + Login) */
.login-wrapper {
    display: flex;
    flex-direction: row; 
    align-items: center;
    justify-content: center;
    gap: 80px; 
    max-width: 900px;
    width: 100%;
}

/* Área do Logotipo e Aviso */
.logo-container {
    text-align: center;
    max-width: 350px;
    width: 100%; 
}
.logo-container img {
    width: 100%; 
    max-width: 300px; 
    height: auto;
    display: inline-block;
}

.aviso-intranet {
    margin-top: 25px;
    padding: 15px;
    background-color: #fdfcf9; 
    border: 1px dashed #806b34; 
    border-radius: 6px;
    color: #665529; 
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
    box-sizing: border-box;
}
.aviso-intranet strong {
    color: #806b34;
    display: inline-block;
    margin-bottom: 4px;
}

/* Área do Formulário de Login */
.login-container { 
    background: #ffffff; 
    padding: 35px; 
    border-radius: 8px; 
    border: 1px solid #e6e1d3; 
    box-shadow: 0 4px 25px rgba(128, 107, 52, 0.08); 
    width: 100%; 
    max-width: 360px; 
    box-sizing: border-box;
}

h2 { 
    text-align: center; 
    color: #806b34; 
    margin-top: 0;
    margin-bottom: 25px; 
    font-size: 24px; 
    font-weight: bold;
}

.campo { 
    margin-bottom: 18px; 
}

label { 
    display: block; 
    margin-bottom: 6px; 
    color: #444; 
    font-weight: bold; 
    font-size: 15px;
}

input[type="text"], input[type="password"] { 
    width: 100%; 
    padding: 10px 12px; 
    border: 1px solid #ccd4dc; 
    border-radius: 5px; 
    box-sizing: border-box; 
    font-family: inherit; 
    font-size: 15px;
}

input[type="text"]:focus, input[type="password"]:focus {
    border-color: #806b34;
    outline: none;
}

button { 
    width: 100%; 
    padding: 11px; 
    background-color: #806b34; 
    border: 0; 
    color: white; 
    border-radius: 5px; 
    font-size: 16px; 
    cursor: pointer; 
    font-weight: bold; 
    font-family: inherit;
    margin-bottom: 15px;
}

button:hover { 
    background-color: #665529; 
}

/* Campo de Password Ocultar/Mostrar */
.input-password-container {
    position: relative;
    width: 100%;
    display: block;
}

.input-password-container input[type="password"],
.input-password-container input[type="text"] {
    width: 100% !important;
    padding-right: 40px !important; 
    box-sizing: border-box !important;
}

.btn-toggle-password {
    position: absolute;
    right: 12px;            
    top: 50%;
    transform: translateY(-50%); 
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    cursor: pointer;
    font-size: 16px;
    padding: 0 !important;
    margin: 0 !important;
    z-index: 10;            
    line-height: 1;
    user-select: none;
    height: auto !important;
    width: auto !important;
}

/* Status e Erros */
.mensagem-status {
    margin-top: 15px;
    text-align: center;
    font-size: 14px;
}

.erro { 
    color: #721c24; 
    background-color: #f8d7da; 
    border: 1px solid #f5c6cb; 
    padding: 10px; 
    border-radius: 5px; 
}

/* Responsividade do Login */
@media (max-width: 768px) {
    .login-wrapper {
        flex-direction: column; 
        gap: 40px; 
    }
    .logo-container {
        max-width: 200px; 
    }
}