

    .slogan {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      font-size: 3rem;
      font-weight: bold;
      color: #fff;
      z-index: 2;
      pointer-events: none;
      line-height: 1.4;
      white-space: nowrap;
      animation: fadeOutSlogan 1s ease forwards;
      animation-delay: 3.5s;
    }

    .slogan span {
      opacity: 0;
      animation: fadeInWord 0.6s ease-out forwards;
      display: inline-block;
      margin: 0 0.2rem;
    }

    .slogan span:nth-child(1) { animation-delay: 0.2s; }
    .slogan span:nth-child(2) { animation-delay: 0.35s; }
    .slogan span:nth-child(3) { animation-delay: 0.5s; }
    .slogan span:nth-child(4) {
      animation: fadeInOnly 1s ease-out forwards;
      animation-delay: 1.6s;
    }

    @keyframes fadeInWord {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeInOnly {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes fadeOutSlogan {
      to { opacity: 0; }
    }

 .center-wrapper {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: scaleFadeInLogin 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  animation-delay: 4.2s;
  transform: scale(0.85);
  z-index: 2;
}


    @keyframes scaleFadeInLogin {
      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    form {
      background: rgba(0, 0, 0, 0.0);
      padding: 2rem;
      border-radius: 12px;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      width: 100%;
      max-width: 400px;
    }

    input {
      padding: 0.8rem;
      border: none;
      border-radius: 6px;
      font-size: 1rem;
    }

    button {
      background: linear-gradient(135deg, #4bf4ff, #35d3e4);
      color: #0d1b2a;
      padding: 0.9rem 2.5rem;
      font-size: 1.1rem;
      font-weight: bold;
      border: none;
      border-radius: 30px;
      cursor: pointer;
      transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1), background 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    button:hover {
      background: linear-gradient(135deg, #35d3e4, #4bf4ff);
      transform: translateY(-12px);
    }

/* Basisinstellingen voor achtergrond en tekst */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Ubuntu', sans-serif;
  background: url('../img/background.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #fff;
  
}


/* Algemene wrapper voor gecentreerde inhoud */
.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.usernameinlog {
  color: #4bf4ff;
}

    h2 {
      font-size: 2.2rem;
      margin: 0 0 1.2rem;
      text-align: center;
    }

    main {
      margin-left: 0;
      padding: 3rem 4vw 6rem;
      min-height: 100vh;
      background: var(--bg-overlay);
      backdrop-filter: blur(4px);
      transition: margin-left 0.3s ease;
    }

        :root {
      --accent: #4bf4ff;
      --accent-dark: #35d3e4;
      --bg-dark: #0d1b2a;
      --bg-overlay: rgba(0, 0, 0, 0.55);
      --card-bg: rgba(13, 27, 42, 0.85);
    }

    * { box-sizing: border-box; }

    