
:root {
    --gold-bright: #f1d592;
    --gold-main: #c5a059;
    --gold-dark: #8e6d2d;
    --deep-bg: #020617;
}

/* Envoltura con fondo dinámico */
.login-page-wrapper {
    background-color: var(--deep-bg);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

/* Efecto de Aura en el fondo */
.bg-glow {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.08) 0%, rgba(2, 6, 23, 0) 70%);
    border-radius: 50%;
    animation: pulseGlow 8s infinite alternate;
    z-index: 0;
}

@@keyframes pulseGlow {
    from {
        transform: scale(1);
        opacity: 0.5;
    }

    to {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* Tarjeta Glass Pro */
.glass-card-pro {
    position: relative;
    z-index: 1;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-radius: 28px;
    padding: 3rem;
    box-shadow: 0 40px 100px rgba(0,0,0,0.6), inset 0 0 20px rgba(197, 160, 89, 0.05);
}

/* Tipografía y Títulos */
.luxury-text-pro {
    color: white;
    letter-spacing: 6px;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 0;
}

.gold-gradient-text {
    background: linear-gradient(to bottom, var(--gold-bright), var(--gold-main));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3rem;
}

.divider-gold {
    width: 50px;
    height: 2px;
    background: var(--gold-main);
    margin-top: 15px;
    box-shadow: 0 0 10px var(--gold-main);
}

/* Inputs Personalizados */
.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 12px;
    padding: 0 15px;
    transition: all 0.3s ease;
}

    .input-wrapper:focus-within {
        border-color: var(--gold-main);
        box-shadow: 0 0 15px rgba(197, 160, 89, 0.15);
        background: rgba(0, 0, 0, 0.5);
    }

    .input-wrapper i {
        color: var(--gold-main);
        font-size: 1.1rem;
    }

    .input-wrapper input {
        background: transparent;
        border: none;
        color: white;
        padding: 12px 15px;
        width: 100%;
        outline: none;
    }

.btn-toggle-pass {
    background: transparent;
    border: none;
    color: #64748b;
    cursor: pointer;
}

/* Botón Luxury */
.btn-luxury-submit {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, #c5a059 0%, #8e6d2d 100%);
    color: #000;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

    .btn-luxury-submit:hover {
        transform: scale(1.02);
        box-shadow: 0 15px 30px rgba(197, 160, 89, 0.3);
    }

/* Mensajes de Error */
.error-toast {
    background: rgba(239, 68, 68, 0.1);
    border-left: 4px solid #ef4444;
    color: #fca5a5;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.version-tag {
    font-size: 10px;
    color: var(--gold-dark);
    border: 1px solid var(--gold-dark);
    padding: 2px 8px;
    border-radius: 20px;
    margin-top: 10px;
    display: inline-block;
}

