
/* Neon heading */
.neon-wrap {
    text-align: center;
    margin-bottom: 18px;
}

.neon {
    font-size: 48px;
    letter-spacing: 6px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--neon1);
    text-shadow:
        0 0 6px rgba(255, 0, 92, 0.6),
        0 0 18px rgba(138, 43, 226, 0.25),
        0 8px 30px rgba(0, 0, 0, 0.7);
    display: inline-block;
    padding: 6px 16px;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.6);
    transition: transform .25s ease;
}

.neon::after {
    content: "";
    position: absolute;
}

/* Container card */
.card {
    width: 100%;
    max-width: 420px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 8px 40px rgba(2, 6, 23, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(6px) saturate(1.1);
}

.card .subtitle {
    color: var(--muted);
    font-size: 13px;
    margin: 8px 0 18px 0;
    text-align: center;
}

.pw-row {
    position: relative;
    display: flex
}

.pw-toggle {
    position: absolute;
    right: 8px;
    top: 6px;
    height: 36px;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 13px;
    background: transparent;
    border: none;
    color: var(--muted);
    cursor: pointer
}

.actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 6px
}

.remember {
    display: flex;
    gap: 8px;
    align-items: center;
    color: var(--muted);
    font-size: 13px
}





.alt {
    display: flex;
    justify-content: center;
    gap: 10px;
    color: var(--muted);
    font-size: 13px
}

.footer {
    margin-top: 12px;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.18)
}

/* Neon pulse animation */
@keyframes pulseNeon {
    0% {
        text-shadow: 0 0 6px rgba(255, 0, 92, 0.6), 0 0 18px rgba(138, 43, 226, 0.18)
    }

    50% {
        text-shadow: 0 0 20px rgba(255, 0, 92, 0.85), 0 0 40px rgba(138, 43, 226, 0.35)
    }

    100% {
        text-shadow: 0 0 6px rgba(255, 0, 92, 0.6), 0 0 18px rgba(138, 43, 226, 0.18)
    }
}

.neon {
    animation: pulseNeon 2.8s infinite ease-in-out
}

/* small screens */
@media (max-width:480px) {
    .neon {
        font-size: 32px;
        letter-spacing: 4px
    }

    .card {
        padding: 18px
    }
}