/* Estilos específicos de la pantalla de Login */
body.login-page-body {
    background: #f8f9fa;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 20px;
}
.login-container {
    background: white;
    width: 100%;
    max-width: 400px;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 0;
}
.login-header { padding: 40px 30px 20px; text-align: left; border-bottom: none; }
.company-name { font-size: 1.5rem; font-weight: bold; color: #333; margin-bottom: 5px; }
.subtitle { color: #666; font-size: 0.9rem; margin-bottom: 0; }
.help-icon { position: absolute; top: 20px; right: 20px; width: 30px; height: 30px; background: #0d6efd; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 18px; font-weight: bold; }
.logo-section { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 40px 30px; }
.logo-circle { width: 120px; height: 120px; border: 4px solid #ccc; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 30px; background: white; }
.logo-icon { color: #0d6efd; font-size: 3.5rem; }
.logo-image { width: 70%; height: 70%; object-fit: contain; display: block; }
.app-name { font-size: 2rem; font-weight: bold; color: #333; margin-bottom: 40px; }
.login-section { padding: 20px 30px 40px; }
.access-field { display: flex; align-items: center; border: 1px solid #ddd; border-radius: 8px; padding: 15px; margin-bottom: 20px; background: #f8f9fa; }
.access-field i { color: #666; margin-right: 15px; font-size: 1.2rem; }
.access-field input { border: none; background: none; outline: none; flex: 1; font-size: 1rem; color: #666; }
.access-field .hide-icon { color: #666; margin-left: 15px; font-size: 1.2rem; }
.enter-btn { width: 100%; padding: 15px; background: #0d6efd; border: 2px solid #0d6efd; border-radius: 25px; color: #fff; font-size: 1.1rem; font-weight: bold; cursor: pointer; transition: all 0.3s ease; margin-bottom: 30px; }
.enter-btn:hover { background: #0b5ed7; border-color: #0b5ed7; color: #fff; }
.footer-text { text-align: center; color: #666; font-size: 0.85rem; line-height: 1.4; }
.footer-text strong { color: #333; }
.error-message { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; border-radius: 8px; padding: 10px; margin-bottom: 15px; text-align: center; animation: shake 0.5s; }
@keyframes shake { 0%, 100% { transform: translateX(0); } 25% { transform: translateX(-5px); } 75% { transform: translateX(5px); } }
