/* ============================================================
   LOGIN PREMIUM — GLASSMORPHISM + NEON GREEN + ANIMATED BG
   ============================================================ */

/* Animated neon gradient background */
.lp-body {
    min-height: 100vh;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #00ff6a, #003314, #00cc55, #005522);
    background-size: 400% 400%;
    animation: neonMove 12s ease infinite;

    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

/* Background animation */
@keyframes neonMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Extra blur layer */
.lp-body::before {
    content: "";
    position: absolute;
    inset: 0;
    backdrop-filter: blur(45px);
    -webkit-backdrop-filter: blur(45px);
    z-index: -1;
}

/* Container */
.lp-container {
    width: 100%;
    max-width: 420px;
    padding: 20px;
}

/* Glass panel */
.lp-panel {
    background: rgba(255,255,255,0.12);
    border-radius: 24px;
    padding: 38px;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(0,255,120,0.45);
    box-shadow: 0 25px 50px rgba(0,255,120,0.25);
    animation: fadeIn .7s ease;
}

/* Header */
.lp-title {
    text-align: center;
    margin-bottom: 32px;
}

.lp-title i {
    font-size: 52px;
    color: #00ff6a;
    text-shadow: 0 0 18px rgba(0,255,120,0.9);
}

.lp-title h2 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-top: 10px;
    text-shadow: 0 0 10px rgba(0,255,120,0.5);
}

.lp-title p {
    font-size: 14px;
    color: #c8ffc8;
    margin-top: 6px;
}

/* Field */
.lp-field {
    margin-bottom: 24px;
}

.lp-field label {
    font-size: 14px;
    font-weight: 600;
    color: #c8ffc8;
    margin-bottom: 6px;
    display: block;
}

/* Input wrapper */
.lp-input-box {
    position: relative;
}

.lp-input {
    width: 100%;
    height: 50px;
    border-radius: 14px;
    border: 1px solid rgba(0,255,120,0.45);
    padding-left: 50px;
    padding-right: 50px;
    font-size: 15px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: #ffffff;
    transition: .25s;
    box-shadow: inset 0 0 12px rgba(0,255,120,0.25);
}

.lp-input::placeholder {
    color: rgba(255,255,255,0.7);
}

.lp-input:focus {
    border-color: #00ff6a;
    box-shadow: 0 0 12px rgba(0,255,120,0.8);
    background: rgba(255,255,255,0.25);
}

/* Icons */
.lp-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #00ff6a;
    text-shadow: 0 0 10px rgba(0,255,120,0.9);
    z-index: 10;
}

/* Eye toggle */
.lp-eye {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 20px;
    color: #00ff6a;
    text-shadow: 0 0 10px rgba(0,255,120,0.9);
    z-index: 20;
}

.lp-eye:hover {
    color: #b8ffda;
}

/* Button */
.lp-btn {
    width: 100%;
    background: rgba(0,255,120,0.25);
    color: #ffffff;
    font-weight: 600;
    padding: 14px;
    border-radius: 14px;
    font-size: 17px;
    border: 1px solid rgba(0,255,120,0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: .25s;
    margin-top: 10px;
    text-shadow: 0 0 10px rgba(0,255,120,0.7);
}

.lp-btn:hover {
    background: rgba(0,255,120,0.35);
    box-shadow: 0 0 18px rgba(0,255,120,0.9);
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile */
@media (max-width: 480px) {
    .lp-panel {
        padding: 30px;
    }
}
