    * { margin: 0; padding: 0; box-sizing: border-box; }

    body {
      font-family: 'Segoe UI', sans-serif;
      min-height: 100vh;
      background: #0a0e1a;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      background-image: url('../img/hero-news.png');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }

     body::before {
       content: '';
       position: fixed;
       inset: 0;
       background: rgba(0,0,0,0.55);
       pointer-events: none;
       z-index: 0;
     }

    .login-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 20px;
      padding: 48px 40px;
      width: 100%;
      max-width: 420px;
      position: relative;
      z-index: 1;
    }

    .login-logo {
      text-align: center;
      margin-bottom: 32px;
    }

    .login-logo .badge {
      display: inline-block;
      background: linear-gradient(135deg, #e50000, #001eff);
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 20px;
      margin-bottom: 12px;
    }

    .login-logo h1 {
      color: #fff;
      font-size: 26px;
      font-weight: 700;
    }

    .login-logo p {
      color: #94a3b8;
      font-size: 14px;
      margin-top: 4px;
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-group label {
      display: block;
      color: #94a3b8;
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 8px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .form-group input {
      width: 100%;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 10px;
      padding: 12px 16px;
      color: #e2e8f0;
      font-size: 15px;
      outline: none;
      transition: border-color 0.3s;
    }

    .form-group input:focus {
      border-color: #ff0000;
    }

    .btn-login {
      width: 100%;
      padding: 14px;
      background: linear-gradient(135deg, #ff0000, #2821ff);
      border: none;
      border-radius: 10px;
      color: #fff;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      transition: opacity 0.3s, transform 0.2s;
      margin-top: 8px;
    }

    .btn-login:hover {
      opacity: 0.9;
      background: linear-gradient(135deg, #001eff, #ff0000);
      transform: translateY(-1px);
    }

    .error-msg {
      background: rgba(239,68,68,0.15);
      border: 1px solid rgba(239,68,68,0.3);
      color: #fca5a5;
      border-radius: 10px;
      padding: 12px 16px;
      font-size: 14px;
      margin-bottom: 20px;
      text-align: center;
    }

    .footer-text {
      text-align: center;
      color: #475569;
      font-size: 12px;
      margin-top: 24px;
    }

