@font-face {
    font-family: 'FS Albert';
    src: url('../../../static/fonts/FSAlbert Regular.woff2') format('woff2'),
         url('../../../static/fonts/FSAlbert Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
  }

  body, html {
    height: 100%;
    margin: 0;
    font-family: 'FS Albert', sans-serif;
    font-weight: normal;
  }
  .jumbotron {
    background: url('../../../static/images/LeuchterBackground.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #333333;
    text-align: center;
    height: 100vh;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Keep this as center */
  }
  .content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin-top: -10vh; /* Add negative margin to pull content up */
  }
  .form-container {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 50%;
    color: #747474; /* Changed to match the jumbotron text color */
    margin: 0 auto;
  }
  .footer {
    margin-top: auto;
  }
  .footer p {
    margin: 0;
  }
  .logo {
    position: absolute;
    top: 20px;
    right: 30px;
    z-index: 1000;
  }
  .logo img {
    width: 150px; /* Adjust this value to fit your logo size */
    height: auto;
  }
  .header-content h1 {
    font-size: 4.5rem; /* Reduced from the default size */
    margin-bottom: 1rem;
    font-weight: bold;
  }
  .btn-primary {
    background-color: red;
    border-color: red;
  }
  .btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background-color: darkred;
    border-color: darkred;
  }
  .btn-group-lg>.btn, .btn-lg {
    padding: 6px 10px;
  }