    /* Retro-Font einbinden */
    @font-face {
      font-family: 'Retro';
      src: url('fonts/Retro.otf') format('opentype');
      font-weight: normal;
      font-style: normal;
      font-display: swap;
    }

    .h1, h2, h3 {
      font-family: 'Retro';
      font-weight: normal;
    }

    :root {
      --accent: #F110DF;
      --bg: #121212;
      --glass: rgba(255,255,255,.06);
      --border: rgba(255,255,255,.12);
    }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg);
      color: #fff;
      height: 100vh;
      margin: 0;
    }

    .login-wrapper {
      display: flex;
      height: 100vh;
    }

    /* Left side */
    .login-form {
      flex: 1;
      max-width: 50%;
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .login-form .logo {
      position: absolute;
      top: 2rem;
      left: 2rem;
      width: 42px;
    }
    .form-area {
      width: 100%;
      max-width: 500px;
      padding: 2rem;
    }
    .form-area h3 {
      font-weight: 500;
    }
    .form-control {
      background: var(--glass);
      border: 1px solid var(--border);
      color: #fff;
      border-radius: 10px;
      padding: .8rem 1rem;
    }
    .form-control:focus {
      background: rgba(255,255,255,.12);
      border-color: var(--accent);
      box-shadow: 0 0 8px rgba(241,16,223,.4);
      color: #fff;
    }
    .form-control::placeholder {
      color: rgba(255,255,255,.6);
    }
    .btn-accent {
      background: var(--accent);
      border: none;
      color: #fff;
      font-weight: 600;
      border-radius: 10px;
      padding: .8rem 1rem;
      width: 100%;
    }
    .btn-accent:hover {
      background: #ff3de6;
      box-shadow: 0 0 10px rgba(241,16,223,.5);
    }

    /* Right side */
    .login-image {
      flex: 1;
      max-width: 50%;
      background: url('https://wallpapers.com/images/hd/fortnite-battle-royale-desktop-ty23oabol2bxs3zr.jpg') no-repeat center center/cover;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .login-image::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,.55);
      backdrop-filter: blur(6px);
    }
    .login-text {
      position: relative;
      color: #fff;
      text-align: center;
      max-width: 400px;
      z-index: 2;
    }
    .login-text h1 {
      font-size: 6rem;
      font-family: 'Retro';
    }
    .login-text p {
      font-size: 1rem;
      color: #ddd;
    }

    /* Mobile */
    @media (max-width: 992px) {
      .login-wrapper {
        flex-direction: column;
      }
      .login-form {
        max-width: 100%;
        flex: unset;
        height: 100%;
      }
      .login-image {
        display: none;
      }
      .login-form .logo {
        top: 1rem;
        left: 1rem;
      }
    }