/* === Custom UI Overrides for Login Page === */
body {
  font-family: 'Inter', sans-serif;
  background: #f2f6fc;
  color: #333;
}

.card {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  border: none;
}

.form-control.input-lg,
input[type="text"],
input[type="password"] {
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  padding: 12px 14px;
  transition: border 0.3s;
}

input[type="text"]:focus,
input[type="password"]:focus {
  border-color: #0a6bb0;
  outline: none;
}

.btn-primary {
  background-color: #0a6bb0;
  border-radius: 6px;
  font-weight: 600;
  padding: 12px;
  transition: background 0.3s;
  border: none;
}

.btn-primary:hover {
  background-color: #095a92;
}

.forgot_pass {
  color: #0a6bb0;
  font-weight: 500;
  font-size: 14px;
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
}

/* Center the login card in the middle of the page */
body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

/* Limit the width of the card */
.card {
  width: 100%;
  max-width: 400px;
  padding: 20px;
  margin: auto;
}
/* === Centered layout and responsive card === */
body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
  background: #f2f6fc;
}

.card {
  max-width: 400px;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Optional: slightly tighten spacing */
.form-label {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
}

.input-lg {
  padding: 12px 14px;
  font-size: 16px;
  border-radius: 8px;
}
/* === Layout Fixes for Login Form === */
.session-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 30px 15px;
  background: #f2f6fc;
}

.card {
  max-width: 400px;
  margin: auto;
  width: 100%;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}

.card .text-center img {
  max-width: 260px;
  height: auto;
  margin-bottom: 25px;
}

.form-inputs label {
  margin-top: 12px;
  font-weight: 600;
  font-size: 14px;
  color: #333;
}

input[type="text"],
input[type="password"],
input.form-control.input-lg {
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
  padding: 12px 14px;
  margin-bottom: 10px;
  width: 100%;
}

button.btn-primary {
  margin-top: 10px;
  width: 100%;
  padding: 12px;
  font-size: 16px;
}

a.forgot_pass {
  display: block;
  text-align: center;
  margin-top: 15px;
}
