html, body {
    height: 100%;
    margin: 0;
  }
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
    display: flex;
    flex-direction: column;
  }

  main {
    flex: 1;
  }

  /* --- Navigation Bar --- */
  .navbar {
      background-color: #1F3D7A;
      padding: 10px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .navbar .nav-left .logo{
      font-size: 22px;
      font-weight: bold;
      color: white;
      display: flex;
      align-items: center;
    }
    .navbar .nav-right {
      display: flex;
      align-items: center;
    }
    .navbar .nav-right span {
      color: white;
      font-weight: bold;
      margin-right: 20px;
    }
    .navbar .nav-right #button {
      background-color: white;
      text-decoration: none;
      color: black;
      border: none;
      padding: 6px 12px;
      border-radius: 4px;
      cursor: pointer;
    }
    .navbar .nav-right #button:hover {
      background-color: lightgreen;
    }

.login-page {
  background: url("https://img.freepik.com/free-photo/particle-lines-futuristic-gradient-background_53876-104053.jpg") no-repeat center center/cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-size: cover; /* Ensure the background scales well */
  padding-top: 100px;  /* 100px Down from top */
}

.login-container {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
  text-align: center;
  width: 90%; /* Make it responsive with max-width */
  max-width: 500px;
  backdrop-filter: blur(10px);
  animation: fadeIn 1s ease-in-out;
  transform: translateY(-10%); /* Moves login container up */
}

.login-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

input {
  width: calc(100% - 20px);
  padding: 12px;
  margin: 15px 0;
  border: none;
  border-bottom: 2px solid;
  outline: none;
  background: transparent;
  color: #333;
  font-size: 16px;
  transition: border-color 0.3s ease-in-out;
}

input:focus {
  border-bottom: 2px solid #0056b3;
}

button {
  width: 100%;
  padding: 12px;
  background: #1F3D7A;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 20px;
  transition: background 0.3s ease-in-out;
  font-weight: bold;
}

button:hover {
  background: #0056b3;
}

.cancel-btn {
  background-color: #cccccc; /* Grey for Cancel */
  color: black;
}

.cancel-btn:hover {
  background-color: #999999; /* Darker grey on hover */
}

.g-recaptcha {
  margin-top: 20px;
}

.help-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    z-index: 1000;
  }
  
  .help-button img {
    width: 50px; /* Adjust size as needed */
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .help-button:hover img {
    transform: scale(1.1); /* Slightly enlarge on hover */
  }  

/* Footer */
.footer {
  background-color: #1F3D7A;
  color: white;
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
  font-weight: bold;
  margin-top: auto;
}
.sitelink
{
color: #58D68D;
}
