  body {
      margin: 0;
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: black;
      font-family: 'Lato', sans-serif;
      color: white;
      text-align: center;
      overflow: hidden;
      position: relative;
    }
    .video-background {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
    }

    /* Main container for centered content */
    .container-main {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      margin: 90px;
    }

    /* Ensure all images are responsive */
    img {
      max-width: 100%;
      height: auto;
    }

    /* Navbar overrides */
    .navbar {
      height: 4em;
      padding: 12px;
      background-color: rgba(0, 0, 0, 0.4);
      color: white;
    }
    .navbar .container-fluid {
      height: 1em;
      padding: 0;
    }
    .navbar-brand, .nav-link {
      font-size: 0.8em;
      padding: 0 0.5em;
    }
    /* Footer styling */
    .footer {
      height: 4em;
      background-color: rgba(0, 0, 0, 0.4);
      color: white;
      position: fixed;
      bottom: 0;
      width: 100%;
      z-index: 2;
      font-size: 0.8em;
      padding: 0 0.5em;
    }

	/* Style for login modal */
	.modal-content {
	  background-color: #ffffff;
	  color: #333333;
	  font-family: 'Lato', sans-serif;
	  border-radius: 10px;
	  padding: 2rem;
	}

	/* Buttons */
	.btn-info {
	  background-color: #54b3b3;
	  border: none;
	}

	.btn-info:hover {
	  background-color: #4aa1a1;
	}

	.btn-light {
	  background-color: #e9ecef;
	}

	/* Optional: refine form spacing */
	.modal-body form .form-control {
	  padding: 0.75rem 1rem;
	  font-size: 1rem;
	}

	.modal-body .btn {
	  font-weight: 500;
	  font-size: 1rem;
	}
