    html, body {
      height: 100%;
      margin: 0;
      display: flex;
      flex-direction: column;
    }
 	
    body { 
      background: #f4f6f9; 
      font-family: 'Segoe UI', sans-serif; 
    }
    .container {
      flex: 1 0 auto; /* Fill available space pushing footer down */
    }
    .auth-form { 
      max-width: 420px; 
      margin: 60px auto; 
      background: #fff; 
      padding: 30px; 
      border-radius: 8px; 
      box-shadow: 0 4px 12px rgba(0,0,0,0.05); 
    }
    .form-title { margin-bottom: 20px; }
    .honeypot { display: none; }
    .logo-top {
      display: block;
      margin: 40px auto 20px;
      max-width: 180px;
      height: auto;
    }
    footer {
      flex-shrink: 0; /* Prevent shrinking */
      background: #6bbf00; 
      color: #fff; 
      padding: 20px 0; 
      text-align: center;
    }
    footer img {
      max-width: 150px;
      margin-bottom: 10px;
      filter: brightness(0) invert(1);
      height: auto;
    }
    footer a { color: #ccc; text-decoration: none; }
.link-button {
  background: none;
  border: none;
  padding: 0;
  color: #0d6efd;
  cursor: pointer;
  font-size: 0.9rem;
  text-decoration: none; /* Remove underline by default */
}

.link-button:hover {
  text-decoration: underline; /* Underline on hover */
}
footer {
    text-align: center;
}
    .auth-footer {
      display: flex;
      justify-content: space-between;
      margin-top: 15px;
      font-size: 0.9rem;
	  
    }
.btn-primary {
background: #6bbf00; 
}