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: 30px auto 0; 
  background: #fff; 
  padding: 30px; 
  border-radius: 4px; 
  box-shadow: 0 4px 12px rgba(0,0,0,0.05); 
  border-top: 5px solid #BE1E2D;
}

.form-title { 
  margin-bottom: 0px;
  text-align: center;
  text-transform: capitalize;
}

.honeypot { display: none; }

.logo-top {
  display: block;
  margin: 0px auto 40px;
  /* max-width: 180px; */
  height: auto;
}

footer {
  flex-shrink: 0; /* Prevent shrinking */
  background: #000000d9; 
  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: #000000d9;
  border-color: #000000d9;
  color: #ffffff;
  border-radius: .25rem;
  padding: 10px 13px;
  text-transform: uppercase;
  border-radius: 2.5px;
  border: none;

  &:hover {
    background: #BE1E2D;
    border-color: #BE1E2D;
  }

  &.btn {
    &:active {
      background-color: #BE1E2D;
    }
  }

  
}

.main-login {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}

.btn.btn-outline-secondary.pw-toggle {
  background-color: #000000d9;
  border: none;
  box-shadow: none;

  .eye-show, .eye-hide {
    margin-bottom: 3px;
  }
}

.form-control {
  background-color: transparent;
  box-shadow: none;
  border: 1px solid rgba(24, 28, 33, 0.1);
  border-radius: .25rem;
  padding: 6px 10px;

  &:focus {
    box-shadow: none;
    border-color: #bc1b30;
  }
}