/* ==========================================================================
   LOGIN ADMINISTRADOR - MAYAN BOATS
   ========================================================================== */

.login-fullscreen-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 2000; 
    background-color: var(--navy-dark);
}

.login-bg-image {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('../img/yate/nizuc1.webp'); 
    background-size: cover;
    background-position: center;
    filter: blur(8px) grayscale(50%);
    transform: scale(1.05); 
    z-index: 1;
}

.login-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.95) 0%, rgba(10, 25, 47, 0.8) 100%);
    z-index: 2;
}

/* Tarjeta de Cristal (Dark Glassmorphism) */
.login-glass-card {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 450px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.icon-lock-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* --- INPUTS MODO OSCURO --- */
.luxury-input-group {
    position: relative;
}

.luxury-input-dark {
    width: 100%;
    padding: 12px 0;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    color: white;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    background: transparent;
    outline: none;
    transition: all 0.3s ease;
}

.luxury-input-dark:focus {
    border-bottom: 2px solid var(--gold);
}

.luxury-input-group label {
    position: absolute;
    top: 12px;
    left: 0;
    color: rgba(255,255,255,0.5);
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

/* Animación de la etiqueta al escribir */
.luxury-input-dark:focus ~ label,
.luxury-input-dark:not(:placeholder-shown) ~ label {
    top: -15px;
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Icono para revelar contraseña */
.toggle-password {
    position: absolute;
    right: 0;
    top: 15px;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: color 0.3s;
}

.toggle-password:hover {
    color: var(--gold);
}

/* --- ALERTAS ELEGANTES --- */
.luxury-alert-danger {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.5);
    color: #ff6b6b;
    border-radius: 8px;
}

/* --- ANIMACIÓN REVEAL --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}