/* ===== Login Page Only ===== */

.login-page{
  min-height: 100vh;        /* full viewport height */
  display: flex;
  justify-content: center;  /* horizontal center */
  align-items: center;      /* vertical center */
  background: #e6eff2;      /* optional soft background */
}

.login-center{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.login-center h2{
  margin-bottom: 10px;
}

.login-center .panel{
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
  border-radius: 4px;
}

.login-center .input-compact{
  width: 220px;
}