body {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Century Gothic', Tahoma, Geneva, Verdana, sans-serif;
        }
        
.login-container {
            width: 100%;
            max-width: 500px;
            padding: 2rem;
     
        }
        
.login-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            overflow: hidden;
        }
        
.login-header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 0.5rem 0.5rem;
            text-align: center;
        }
        
.login-header i {
            font-size: 4rem;
            margin-bottom: 1rem;
        }
        
.login-header h2 {
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
.login-header p {
            opacity: 0.9;
            margin: 0;
        }
        
.login-body {
            padding: 1.5rem 2rem;
        }
        
.form-label {
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 0.5rem;
        }
        
.form-control {
            border-radius: 10px;
            border: 2px solid #e2e8f0;
            padding: 0.75rem 1rem;
            transition: all 0.3s ease;
        }
        
.form-control:focus {
            border-color: #667eea;
            box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
        }
        
.input-group-text {
            background: white;
            border: 2px solid #e2e8f0;
            border-right: none;
            color: #667eea;
        }
        
.input-group .form-control {
            border-left: none;
        }
        
.btn-login {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border: none;
            border-radius: 10px;
            padding: 0.875rem;
            font-weight: 700;
            font-size: 1.125rem;
            color: white;
            width: 100%;
            transition: all 0.3s ease;
        }
        
.btn-login:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
        }
        
.login-footer {
            text-align: center;
            padding: 0.5rem 2rem;
            background: #f8fafc;
            border-top: 1px solid #e2e8f0;
        }
        
.login-footer a {
            color: #667eea;
            text-decoration: none;
            font-weight: 600;
        }
        
.login-footer a:hover {
            text-decoration: underline;
        }
        
 .form-check-input:checked {
            background-color: #667eea;
            border-color: #667eea;
        }
        
@media (max-width: 576px) {
            .login-container {
                padding: 1rem;
            }
            
            .login-body {
                padding: 1.5rem 1rem;
            }
        }

/* Logo/Marca */
.top-navbar .navbar-brand {
    font-family: 'Noxlock-Free.otf';
    color: white;
    font-weight: 600;
    font-size: 4.2rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1px;
    transition: color 0.3s ease;
    margin-left: 3%;
    margin-top: 0%;
    text-align: center;
    
}

@font-face {
  font-family: 'Noxlock-Free.otf'; /* El nombre que le das a tu fuente */
  src: url('../../assets/images/Noxlock-Free.otf') format('opentype'); /* Ruta relativa al CSS */
  font-weight: bold;
  font-style: normal;
} 
/* ========================================================================
   HOVER DEGRADADOS DEL LOGO
   ======================================================================== */
.top-navbar .navbar-brand i {
    font-size: 1.5rem;
    /* Asegura que el ícono herede el estilo del padre si es necesario */
}

.top-navbar .navbar-brand {
    /* 1. Estado por defecto: Blanco */
    color: #FFFFFF; 
    
    /* Elimina el subrayado si es un enlace (<a>) */
    text-decoration: none; 
    
    /* Transición suave para el color por defecto (aunque usaremos background-clip) */
    transition: color 0.3s ease;
}

/* 2. Estado Hover: Degradado animado */
.top-navbar .navbar-brand:hover {
    /* El color #ffd900 que tenías ya no es necesario si usas background-clip */
    
    /* Define el degradado de naranjas/amarillos */
    background: linear-gradient(to right, #bd5fe2, #ffffff, #ffffff, #ff47d7);
    
    /* Configuración para la animación de movimiento */
    background-size: 200% auto; /* El fondo es 2 veces más ancho que el texto/ícono */
    transition: background-position 0.6s ease-in-out; /* Transición para el movimiento */

    /* Aplica el fondo como color de texto */
    -webkit-background-clip: text;
    background-clip: text;
    
    /* Hace el texto/ícono transparente para ver el fondo */
    -webkit-text-fill-color: transparent;
    -text-fill-color: transparent;
    
    /* Mueve el fondo hacia la derecha para la animación */
    background-position:center; 
}