.neon-body {
    background: linear-gradient(180deg, #020617, #07142c);
    font-family: 'Poppins', sans-serif;
    color: #e6f4ff;
    overflow: hidden;
}

.neon-grid {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background:
        linear-gradient(to right, rgba(40,224,255,0.10) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(61,168,255,0.10) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.22;
    z-index: 0;
}

.reset-card {
    width: min(420px, 70vw);
    margin: 80px auto;
    padding: 30px;
    position: relative;
    z-index: 5;
}

.glass-card {
    background: rgba(9,18,40,0.92);
    border-radius: 18px;
    backdrop-filter: blur(14px);
    border: 1px solid rgba(61,168,255,0.38);
    box-shadow: 0 0 28px rgba(40,224,255,0.28);
}

.logo-box {
    text-align: center;
    margin-bottom: 15px;
    position: relative;
}

.logo-image {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 2px solid rgba(40,224,255,0.55);
    filter: drop-shadow(0 0 16px rgba(40,224,255,0.45));
    object-fit: cover;
}

.logo-title {
    font-size: 24px;
    font-weight: 700;
    margin-top: 8px;
    color: #28e0ff;
    text-shadow: 0 0 14px rgba(40,224,255,0.55);
}

.logo-sub {
    color: #3da8ff;
    font-weight: 700;
    opacity: .9;
}

.reset-title {
    text-align: center;
    font-size: 22px;
    margin-top: 10px;
    font-weight: 700;
    color: #e7f4ff;
}

.reset-desc {
    text-align: center;
    font-size: 14px;
    color: rgba(200,220,255,0.7);
    margin-bottom: 25px;
}

.neon-input {
    width: 100%;
    padding: 12px;
    margin-bottom: 18px;
    border-radius: 10px;
    border: 1px solid rgba(40,224,255,0.35);
    background: rgba(255,255,255,0.05);
    color: #fff;
    transition: 0.25s;
}

.neon-input:focus {
    border-color: #28e0ff;
    box-shadow: 0 0 14px rgba(40,224,255,0.55);
}

.neon-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(90deg, #3da8ff, #28e0ff);
    border: none;
    border-radius: 10px;
    color: #001015;
    font-weight: 700;
    cursor: pointer;
    transition: 0.25s;
    box-shadow: 0 0 22px rgba(40,224,255,0.25);
}

.neon-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 36px rgba(40,224,255,0.45);
}

.step {
    display: none;
}

.step.active {
    display: block;
}

.popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.popup-box {
    background: rgba(9,18,40,0.96);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(40,224,255,0.45);
    width: 330px;
    text-align: center;
    color: #e6f4ff;
    box-shadow: 0 0 28px rgba(40,224,255,0.35);
}

.popup-btn {
    margin-top: 15px;
    padding: 10px 15px;
    background: linear-gradient(90deg, #3da8ff, #28e0ff);
    color: #001015;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    font-weight: 700;
    box-shadow: 0 0 18px rgba(40,224,255,0.35);
    transition: .25s;
}

.popup-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(40,224,255,0.55);
}

.neon-input,
.neon-btn {
    box-sizing: border-box;
    width: 100%;
    display: block;
}

.step label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
}
