/* login.css */
html,
body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  background-color:#162336;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

.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;
}

main.content-area {
  padding: 2rem;
  flex-grow: 1;
  background-color: #fff;
  min-height: 100vh;
}






/* Footer styles */
footer {
  /* background-color: #1e73be; */
  background: #1f2937;
  border-top: 1px solid #ddd;
  padding: 1rem 0;
  text-align: center;
  font-size: 0.9rem;
  color: #fff;
  flex-shrink: 0;
}


.auth-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  font-size: 0.9rem;

}

.bg-primary {
  background-color: #1e73be !important;
}

.btn-primary {
  background-color: #1e73be;
  color: #fff;
  border: none;
  transition: background-color 0.3s ease;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #155a8a;
  /* darker blue on hover */
  color: #fff;
  outline: none;
  box-shadow: 0 0 8px rgba(30, 115, 190, 0.7);
}

.btn-secondary {
  background-color: #6c757d;
  /* classic muted gray */
  color: #fff;
  border: none;
  transition: background-color 0.3s ease;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background-color: #565e64;
  /* darker gray on hover */
  color: #fff;
  outline: none;
  box-shadow: 0 0 8px rgba(108, 117, 125, 0.7);
}

.btn-info {
  background-color: #17a2b8;
  /* a nice teal */
  color: #fff;
  border: none;
  transition: background-color 0.3s ease;
}

.btn-info:hover,
.btn-info:focus {
  background-color: #117a8b;
  /* darker teal on hover */
  color: #fff;
  outline: none;
  box-shadow: 0 0 8px rgba(23, 162, 184, 0.7);
}

/* Margin right helper class */
.me-2 {
  margin-right: 0.5rem !important;
}