
.navbar, .footer, header, footer{
    display:none !important;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    font-family: 'Inter', sans-serif;
    background: #040714;
    min-height: 100vh;
    overflow-x: hidden;
  }

  /* ===== PARTICLES CONTAINER ===== */
  #particles-js {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
  }

  /* ===== BLUE GRADIENT TEXT ===== */
  .blue-text {
    background: linear-gradient(135deg, #60a5fa, #2563eb, #3b82f6, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  /* ===== LOGIN WRAPPER ===== */
  .login-wrapper {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
  }

  /* ===== AMBIENT GLOWS ===== */
  .login-wrapper::before {
    content: '';
    position: fixed;
    top: -200px; left: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(37,99,235,0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
  }

  .login-wrapper::after {
    content: '';
    position: fixed;
    bottom: -200px; right: -200px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(29,78,216,0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
  }

  /* ===== TRADING GRID BACKGROUND LINES ===== */
  .login-card {
    position: relative;
    width: 100%;
    max-width: 460px;
    background: linear-gradient(165deg, rgba(10,15,35,0.94) 0%, rgba(4,7,20,0.97) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(37,99,235,0.15);
    border-radius: 24px;
    padding: 48px 40px 40px;
    box-shadow:
      0 25px 80px rgba(0,0,0,0.6),
      0 0 80px rgba(37,99,235,0.06),
      inset 0 1px 0 rgba(255,255,255,0.03);
    overflow: hidden;
  }

  /* Top blue accent line */
  .login-card::before {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #2563eb, #3b82f6, #60a5fa, #3b82f6, #2563eb, transparent);
    border-radius: 0 0 2px 2px;
  }

  /* Subtle corner glow */
  .login-card::after {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(37,99,235,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }

  /* ===== LOGO ===== */
  .login-logo-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
  }

  .login-logo-ring {
    position: absolute;
    width: 140px; height: 140px;
    border: 1px solid rgba(37,99,235,0.12);
    border-radius: 50%;
    animation: logoRingPulse 4s ease-in-out infinite;
  }

  .login-logo-ring:nth-child(2) {
    width: 160px; height: 160px;
    border-color: rgba(37,99,235,0.06);
    animation-delay: 1.5s;
  }

  @keyframes logoRingPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.06); opacity: 0.4; }
  }

  .login-logo {
    width: 110px;
    height: 110px;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid rgba(37,99,235,0.4);
    box-shadow: 0 0 40px rgba(37,99,235,0.2), 0 0 80px rgba(37,99,235,0.05);
    position: relative;
    z-index: 2;
    background: #040714;
    padding: 8px;
  }

  /* ===== WELCOME TEXT ===== */
  .login-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
  }

  .login-subtitle {
    color: #5a6078;
    font-size: 0.88rem;
    margin-bottom: 28px;
  }

  /* ===== ALERT BOXES ===== */
  .alert {
    border-radius: 12px;
    font-size: 0.82rem;
    padding: 12px 16px;
    border: none;
    margin-bottom: 20px;
  }

  .alert-danger {
    background: rgba(239,68,68,0.08);
    border: 1px solid rgba(239,68,68,0.2);
    color: #fca5a5;
  }

  .alert-danger ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .alert-danger ul li {
    padding: 3px 0;
  }

  .alert-danger .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.5;
  }

  /* ===== FORM FLOATING INPUTS ===== */
  .form-floating {
    position: relative;
    margin-bottom: 18px;
  }

  .form-floating .form-control {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    color: #ffffff;
    font-size: 0.92rem;
    padding: 20px 16px 8px;
    height: 58px;
    transition: all 0.3s ease;
  }

  .form-floating .form-control:focus {
    background: rgba(37,99,235,0.04);
    border-color: rgba(37,99,235,0.45);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1), 0 0 25px rgba(37,99,235,0.06);
    outline: none;
    color: #ffffff;
  }

  .form-floating .form-control::placeholder {
    color: transparent;
  }

  .form-floating label {
    color: #5a6078;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 20px 16px 0 !important;
    transition: all 0.2s ease;
  }

  .form-floating .form-control:focus ~ label,
  .form-floating .form-control:not(:placeholder-shown) ~ label {
    color: #3b82f6;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 8px 16px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  /* ===== LINKS ROW ===== */
  .login-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
    margin-top: 4px;
  }

  .login-links a {
    color: #5a6078;
    font-size: 0.82rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
  }

  .login-links a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 1px;
    background: #3b82f6;
    transition: width 0.3s ease;
  }

  .login-links a:hover {
    color: #60a5fa;
  }

  .login-links a:hover::after {
    width: 100%;
  }

  .login-links .support-link {
    color: #3b82f6;
    font-weight: 600;
  }

  .login-links .support-link:hover {
    color: #60a5fa;
  }

  .login-links .register-text {
    color: #5a6078;
    font-size: 0.82rem;
  }

  .login-links .register-text a {
    color: #3b82f6;
    font-weight: 700;
  }

  /* ===== LOGIN BUTTON ===== */
  .btn-login {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #60a5fa, #2563eb, #1d4ed8);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 30px rgba(37,99,235,0.35);
  }

  .btn-login::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
  }

  .btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 45px rgba(37,99,235,0.5);
    color: #ffffff;
  }

  .btn-login:hover::before {
    left: 100%;
  }

  .btn-login:active {
    transform: translateY(0);
  }

  .btn-login .btn-icon {
    font-size: 1.1rem;
  }

  /* ===== BOTTOM BRANDING ===== */
  .login-branding {
    text-align: center;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
  }

  .login-branding p {
    color: #2d3348;
    font-size: 0.72rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
  }

  .login-branding .brand-name {
    color: rgba(37,99,235,0.4);
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 576px) {
    .login-card {
      padding: 36px 24px 28px;
      border-radius: 20px;
    }

    .login-logo {
      width: 90px;
      height: 90px;
    }

    .login-logo-ring { width: 120px; height: 120px; }
    .login-logo-ring:nth-child(2) { width: 140px; height: 140px; }

    .login-title { font-size: 1.4rem; }

    .login-links {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }

    .btn-login {
      padding: 14px;
      font-size: 0.88rem;
    }
  }

  /* ===== SELECTION ===== */
  ::selection {
    background: #2563eb;
    color: #fff;
  }

  /* ===== SCROLLBAR ===== */
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: #040714; }
  ::-webkit-scrollbar-thumb { background: #1d4ed8; border-radius: 3px; }
