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

    body {
      margin: 0;
      padding: 0;
      background-color: black;
      color: white;
      font-family: Arial, sans-serif;
      min-height: 100vh;
      min-height: 100dvh;
      display: flex;
      justify-content: center;
      align-items: center;
      box-sizing: border-box;
      overflow-x: hidden;
      padding: 16px;
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }

    /* Container voor logo + inlogbalk */
    .login-wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
      width: min(100%, 360px);
    }

    /* Logo precies boven de inlogbalk, zonder ruimte */
    .login-logo {
      display: block;
      max-width: 220px;
      width: 100%;
      height: auto;
    }

    /* FUTURISTISCHE INLOGBALK MET ANIMERENDE RAND */
    .login-card {
      position: relative;
      margin-top: 0;
      width: 320px;
      max-width: 100%;
      padding: 28px 24px 26px 24px;
      border-radius: 18px;
      background: #000;
      overflow: hidden;
    }

    /* Draaiende witte rand rond de kaart */
    .login-card::before {
      content: "";
      position: absolute;
      inset: -3px;
      background: conic-gradient(
        from 0deg,
        rgba(255,255,255,0.9),
        rgba(255,255,255,0.1),
        rgba(255,255,255,0.9)
      );
      animation: rotateBorder 4s linear infinite;
      z-index: 0;
    }

    /* Binnenvlak zodat alleen de rand licht geeft */
    .login-card::after {
      content: "";
      position: absolute;
      inset: 2px;
      background: #000;
      border-radius: 15px;
      z-index: 1;
    }

    /* Inhoud van de kaart boven de animatie */
    .login-inner {
      position: relative;
      z-index: 2;
    }

    .login-title {
      text-align: center;
      margin-bottom: 16px;
      font-size: 18px;
      font-weight: 600;
    }

    .field {
      display: flex;
      flex-direction: column;
      margin-bottom: 12px;
      font-size: 13px;
    }

    .field label {
      margin-bottom: 4px;
      color: #ddd;
    }



    .forgot-password {
  margin-top: 10px;
  text-align: center;
}

.forgot-password a {
  color: #888;
  font-size: 0.9rem;
  cursor: pointer;
}




    .field input {
      padding: 8px 10px;
      border-radius: 8px;
      border: 1px solid #444;
      background: #000;
      color: white;
      font-size: 13px;
      outline: none;
      width: 100%;
    }

    .field input:focus {
      border-color: #888;
      box-shadow: 0 0 10px rgba(255,255,255,0.2);
    }

    .login-button {
      width: 100%;
      margin-top: 10px;
      padding: 9px 0;
      border-radius: 999px;
      border: none;
      cursor: pointer;
      font-size: 14px;
      font-weight: 600;
      background: white;
      color: black;
      transition: 0.15s ease;
    }

    .login-button:hover {
      background: #e5e5e5;
    }

  
    .login-footer {
      margin-top: 10px;
      text-align: center;
      font-size: 11px;
      color: #888;
    }

    @keyframes rotateBorder {
      from {
        transform: rotate(0deg);
      }
      to {
        transform: rotate(360deg);
      }
    }

    @media (max-width: 420px) {
      body {
        align-items: flex-start;
        padding: 24px 14px;
      }

      .login-logo {
        max-width: 180px;
      }

      .login-card {
        width: 100%;
        padding: 24px 18px 22px;
      }

      .field input {
        font-size: 16px;
        padding: 10px 12px;
      }

      .login-button {
        padding: 11px 0;
      }
    }
