 :root {
     --bg-0: #070310;
     --bg-1: #10081c;
     --line: rgba(168, 85, 247, 0.16);
     --line-strong: rgba(168, 85, 247, 0.4);
     --purple-300: #c084fc;
     --purple-400: #a855f7;
     --purple-500: #8b2fd6;
     --grad: linear-gradient(120deg, #7c3aed 0%, #a834e0 60%, #c026d3 100%);
     --text-hi: #f4eefc;
     --text-mid: #b9a8d1;
     --text-low: #7d6b96;
     --up: #34d399;
     --pill: 999px;
 }

 .Login_section {
     width: 100%;
     display: flex;
     justify-content: center;
     align-items: center;
     height: 100vh;
     margin: auto;
     background: radial-gradient(950px 480px at 50% 112%, rgba(124, 58, 237, 0.34), transparent 66%), radial-gradient(640px 400px at 88% -8%, rgba(139, 47, 214, 0.13), transparent 60%), radial-gradient(560px 360px at 6% 10%, rgba(88, 28, 135, 0.15), transparent 60%), linear-gradient(180deg, #08030e 0%, #0b0514 52%, #140a22 100%);
 }



 /* ---------- Floating HUD panels ---------- */
 .hud {
     position: absolute;
     width: 236px;
     padding: 18px 18px 16px;
     border-radius: 16px;
     border: 1px solid rgba(168, 85, 247, 0.22);
     background: linear-gradient(160deg, rgba(124, 58, 237, 0.10), rgba(20, 10, 34, 0.35));
     backdrop-filter: blur(4px);
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), inset 0 0 24px rgba(124, 58, 237, 0.07);
     animation: hover 7s ease-in-out infinite alternate;
 }

 .hud-left {
     left: 5vw;
     top: 26%;
     transform: perspective(1100px) rotateY(22deg);
 }

 .hud-right {
     right: 5vw;
     top: 32%;
     transform: perspective(1100px) rotateY(-22deg);
     animation-delay: -3.5s;
 }

 @keyframes hover {
     from {
         margin-top: 0;
     }

     to {
         margin-top: -16px;
     }
 }



 .hud svg.spark {
     width: 100%;
     height: 52px;
     display: block;
 }

 .hud-bars {
     display: flex;
     align-items: flex-end;
     gap: 6px;
     height: 44px;
     margin-top: 12px;
 }

 .hud-bars i {
     flex: 1;
     border-radius: 3px 3px 0 0;
     background: linear-gradient(180deg, rgba(192, 132, 252, 0.85), rgba(124, 58, 237, 0.25));
 }

 .hud-meta {
     display: flex;
     justify-content: space-between;
     margin-top: 12px;
     font-size: 12.5px;
     font-variant-numeric: tabular-nums;
     color: var(--text-mid);
 }

 .hud-meta .up {
     color: var(--up);
     font-weight: 600;
 }

 .hud-timer {
     
     font-size: 26px;
     font-weight: 600;
     letter-spacing: 2px;
     color: var(--text-hi);
     font-variant-numeric: tabular-nums;
     text-shadow: 0 0 16px rgba(168, 85, 247, 0.55);
     margin-bottom: 6px;
 }

 .hud-sub {
     font-size: 11.5px;
     color: var(--text-low);
     letter-spacing: 1px;
     text-transform: uppercase;
 }

 .hud-rings {
     display: flex;
     gap: 12px;
     margin-top: 14px;
 }

 .hud-rings b {
     width: 34px;
     height: 34px;
     border-radius: 50%;
     border: 2px solid rgba(168, 85, 247, 0.45);
     border-top-color: var(--purple-300);
     display: block;
 }


 /* ---------- Floating HUD panels ---------- */
  .hud {
    position: absolute;
    width: 236px;
    padding: 18px 18px 16px;
    border-radius: 16px;
    border: 1px solid rgba(168, 85, 247, 0.22);
    background: linear-gradient(160deg, rgba(124, 58, 237, 0.10), rgba(20, 10, 34, 0.35));
    backdrop-filter: blur(4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), inset 0 0 24px rgba(124, 58, 237, 0.07);
    animation: hover 7s ease-in-out infinite alternate;
  }

  .hud-left  { left: 5vw;  top: 26%; transform: perspective(1100px) rotateY(22deg); }
  .hud-right { right: 5vw; top: 32%; transform: perspective(1100px) rotateY(-22deg); animation-delay: -3.5s; }

  @keyframes hover {
    from { margin-top: 0; }
    to   { margin-top: -16px; }
  }

  .hud-title {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--text-mid);
    margin-bottom: 12px;
  }

  .hud svg.spark { width: 100%; height: 52px; display: block; }

  .hud-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 44px;
    margin-top: 12px;
  }

  .hud-bars i {
    flex: 1;
    border-radius: 3px 3px 0 0;
    background: linear-gradient(180deg, rgba(192, 132, 252, 0.85), rgba(124, 58, 237, 0.25));
  }

  .hud-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    font-size: 12.5px;
    font-variant-numeric: tabular-nums;
    color: var(--text-mid);
  }

  .hud-meta .up { color: var(--up); font-weight: 600; }

  .hud-timer {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-hi);
    font-variant-numeric: tabular-nums;
    text-shadow: 0 0 16px rgba(168, 85, 247, 0.55);
    margin-bottom: 6px;
  }

  .hud-sub { font-size: 11.5px; color: var(--text-low); letter-spacing: 1px; text-transform: uppercase; }

  .hud-rings { display: flex; gap: 12px; margin-top: 14px; }

  .hud-rings b {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid rgba(168, 85, 247, 0.45);
    border-top-color: var(--purple-300);
    display: block;
  }

  .login_logo {
    width: 100%;
}

.login_logo img {
    width: 100%;
    max-width: 300px;
    margin: auto;
    margin-bottom: 10px;
}

.login_logo .logo-login {
    display: flex;
    width: 100%;
}

.Login_box {
    width: min(430px, 100%);
    background: rgba(21, 12, 34, 0.66);
    border: 1px solid var(--line);
    border-radius: 26px;    
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 60px rgba(124, 58, 237, 0.14), inset 0 0 0 1px rgba(255, 255, 255, 0.02);
    padding: 26px 30px 26px;
}

.Login_box h2 {
    font-weight: 700;
    font-size: clamp(25px, 5vw, 25px);
    letter-spacing: 0.4px;
    line-height: 1.1;
    margin: 8px 0 30px;
    background: linear-gradient(100deg, #ffffff 0%, #c17dff 55%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-align: center;
}

.Login_box .fls {
    position: relative;
    margin-bottom: 16px;
}

.Login_box .fls input {
    width: 100%;
    background: rgba(9, 4, 16, 0.65);
    border: 1px solid rgba(168, 85, 247, 0.22);
    border-radius: 14px;
    color: var(--text-hi);
    font-size: 14.5px;
    padding: 18px 46px 7px 16px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.Login_box .fls label {
    position: absolute;
    left: 17px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: var(--text-low);
    pointer-events: none;
    transition: all 0.16s ease;
    line-height: 16px;
}

.Login_box .fls input::placeholder { 
    color: transparent;
 }

 .Login_box .fls input:focus {
    border-color: var(--purple-400);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.18);
  }

  .Login_box .fls input:focus ~ label,
  .Login_box .fls input:not(:placeholder-shown) ~ label {
    top: 8px;
    transform: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--purple-300);
  }

  .login_btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    border: 0;
    border-radius: var(--pill);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.3px;
    padding: 14px 22px;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
    color: #fff;
    background: var(--grad);
    box-shadow: 0 10px 28px rgba(124, 58, 237, 0.45);
  }

  .divider {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text-low);
    font-size: 11.5px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 20px 0 9px;
}

.divider::before, .divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--line);
}

.registers {
    color: #7d6b96;
}

.registers a {
    background: linear-gradient(100deg, #c084fc 0%, #9333ea 55%, #7c3aed 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
