    @import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;700&family=Bebas+Neue&display=swap');
    body, html {
      height: 100%;
      margin: 0;
      background: black;
      font-family: 'Oswald', sans-serif;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
    }
    h1, h2, h3, .navbar-brand {
      font-family: 'Bebas Neue', sans-serif;
    }
    .logo-container {
      margin-bottom: 20px;
      text-align: center;
    }

    .logo-container img {
      max-width: 160px;
      height: auto;
      filter: drop-shadow(0 0 5px rgba(0,0,0,0.3));
    }

    .login-container {
      background: white;
      padding: 2rem 3rem;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgb(0 0 0 / 0.1);
      width: 100%;
      max-width: 400px;
      text-align: center;
    }

    .login-container h2 {
      margin-bottom: 1.5rem;
      font-weight: 700;
      color: #333;
    }

    .form-control:focus {
      box-shadow: 0 0 8px #00ff88;
      border-color: #00ff88;
    }

    .btn-login {
      background: #00ff88;
      border: none;
      width: 100%;
      font-weight: 600;
      padding: 10px;
      font-size: 1.1rem;
      transition: background-color 0.3s ease;
    }

    .btn-login:hover {
      background: black;
      color: white;
    }

    .form-text {
      font-size: 0.85rem;
      color: #666;
      margin-top: 0.5rem;
      text-align: center;
    }