@font-face {
  font-family: 'booty';
  src: url('/styles/SUSE-Bold.ttf') format('truetype');
}

@font-face {
  font-family: 'PermanentMarker';
  src: url('/styles/PermanentMarker-Regular.ttf') format('truetype');
}

  
  /* Container for the top navigation */
  .topnav {
      font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
      display: flex;
      justify-content: space-between; /* Space between logo and links */
      align-items: center; /* Align logo and links vertically */
      background-color: rgb(31, 31, 39);
      padding: 14px 20px;
      z-index: 1;
      width: 100%;
      position: fixed; /* Make it stay on top when scrolling */
      top: 0;
      left: 0;
      z-index: 1;
    }
    
    .logo {
      display: flex;
      align-items: center;
      font-size: 24px;
      font-weight: bold;
      flex: 1;
      color: #ccc;
      font-family: "booty";
    }
    
    /* Style the logo image */
    .site-logo {
      width: 40px; /* Adjust size of the logo */
      height: 40px; /* Ensure it has a fixed height */
      margin-right: 10px; /* Add space between the logo and the text */
    }
    /* Links on the right */
    .nav-links {
      display: flex; /* Align links horizontally */
      margin-left: fixed; /* Push the links to the right */
      margin-right: 25px;
  
    }
    
    /* Style the links */
    .nav-links a {
      padding: 14px 25px;
      text-decoration: none;
      font-size: 15px;
      color: #d3d3d4;
      margin-right: 5px;
    }
    
    /* Change color on hover */
    .nav-links a:hover {
      background-color: rgba(255, 255, 255, 0.3); /* Background color on hover */
      color: #242230;
      border-radius: 15px;
    }
  
  /* Video background */
  .video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1; /* Behind everything */
  }
  
  #bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure video covers the container */
  }
  
  /* Glass container overlaying the video */
  .glass-container {
    position: absolute;
    top: 70px; /* Starts just below the navigation bar */
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.2); /* Transparent white background */
    backdrop-filter: blur(10px); /* Blurs the background behind it */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37); /* Gives it depth with shadow */
    color: white; /* Text color contrast against the background */
    margin: 0;
    z-index: 0; /* Ensure it stays behind the nav bar */
  }
  
  /* Registration form container */
  .container {
    position: relative;
    z-index: 1;
    max-width: 400px;
    margin: 150px auto; /* Center the form vertically and horizontally */
    padding: 20px;
    background-color: rgb(31, 31, 39); /* Slightly transparent background */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px); /* Adds the glass effect */
  }
  
  /* Form styles */
  h1 {
    text-align: center;
    color: white;
    font-size: 24px;
    font-family: "booty";
  }
  
  form {
    display: flex;
    flex-direction: column;
  }
  
  label {
    margin-top: 10px;
    color: white; /* Label text color */
    font-family: "booty";
  }
  
  input[type="text"],
  input[type="email"],
  input[type="password"] {
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.2); /* Slightly transparent input fields */
    color: white;
  }
  
  input::placeholder {
    color: #e0e0e0; /* Placeholder text color */
  }
  
  button {
    margin-top: 15px;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #0056b3;
  }
  