/* main.css */
/* Ensures footer stays at bottom when content is short */
html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

/* Content area grows to fill space */
main {
  flex: 1 0 auto;
}

/* Footer at bottom */
footer {
  flex-shrink: 0;
  background-color: #007bff; /* Bootstrap blue */
  color: #fff;
  text-align: center;
  padding: 1rem 0;
}

footer a {
  color: #dbe9ff;
  text-decoration: none;
  margin: 0 0.25rem;
}

footer a:hover {
  text-decoration: underline;
}

/* Login card styling */
.login-card {
  max-width: 400px;
  width: 100%;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 2rem;
}

.btnIcon {
  width: 48px;
  height: 48px;
  display: inline-block;
  object-fit: contain;
  aspect-ratio: 1/1;
  margin: 0;
  padding: 0;
  border: none;
  vertical-align: middle;
  cursor: pointer;
}