body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
    box-sizing: border-box;
    background-color: black;
    background-image: url(/images/calcBG.jpg);
    background-repeat: no-repeat;
    background-size: cover;

  }

.form-container {

    max-width: 600px;
    margin-top: 50px;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 400px;
}

.form-container h2 {
    margin-top: 0;
    font-size: 24px;
}

.form-container form {
    display: flex;
    flex-direction: column;
}

.form-container label {
    margin-top: 10px;
    font-weight: bold;
}

.form-container input,
.form-container select {
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.form-container small {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #888;
}

.form-container button {
    margin-top: 20px;
    padding: 10px 20px;
    border: none;
    background-color: #007bff;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
}

.form-container button:hover {
    background-color: #0056b3;
}


/* Style the navbar */
#navbar {
    overflow: hidden;
    background-color: #333;
    z-index: 1;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 80px;
  }
  
  /* Navbar links */
  #navbar a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 12px;
    margin-right: 25px;
    text-decoration: none;
    border-color: white;
    border-style: solid;
    border-radius: 5px;
    letter-spacing: 1.5px;
  }
  
  #navLogo img {
    height: 75px;
  }
  
  /* The sticky class is added to the navbar with JS when it reaches its scroll position */
  .sticky {
    position: fixed;
    top: 0;
    width: 100%;
  }
  
  /* Add some top padding to the page content to prevent sudden quick movement (as the navigation bar gets a new position at the top of the page (position:fixed and top:0) */
  .sticky + .content {
    padding-top: 60px;
  }
  
  
  
  #menuButton {
    cursor: pointer;
  }
  
  #menuOverlay {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 50%; /* Adjust width to cover the right half of the screen */
    height: 100vh; /* Set height to cover the entire height of the screen */
    z-index: 9999;
  }
  
  #menuContent {
    position: fixed;
    top: 0;
    right: 0;
    width: 40%; /* Adjust width to cover the right half of the screen */
    height: 100vh; /* Set height to cover the entire height of the screen */
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  }
  
  #menuContent a {
    display: block;
    margin-bottom: 10px;
    color: #333;
    text-decoration: none;
  }
  
  #closeButton {
    display: block;
    margin-top: 10px;
    padding: 5px 10px;
    background-color: #ccc;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  #closeButton:hover {
    background-color: #999;
  }
  
  
  @media only screen and (max-width: 600px) {

    #navbar a {
      display: none;
    }
    #navbar {
      justify-content: space-evenly;
    }
  
    .loginBtn {
      display: flex;
    }
  
  }