.login-page {
  margin: 0;
}

.login-bg {
  min-height: 100vh;
  position: relative;
  background-image: url("../img/karrgruvan.jpg");
  background-size: cover;
  background-position: center;
}

.login-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(10,15,25,.55), rgba(10,15,25,.75));
}

.login-center {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-box-modern {
  width: min(92vw, 380px);
  background: rgba(255,255,255,.95);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  text-align: center;
}

.login-header h1 {
  margin: 10px 0 5px;
  font-size: 24px;
  color: #1f2937;
}

.login-org {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 20px;
}

.login-logo {
  width: 150px;
  height: auto;
  margin: 0 auto 20px;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.25));
}

.login-box-modern label {
  display: block;
  text-align: left;
  font-size: 13px;
  margin-top: 12px;
  color: #374151;
}

.login-box-modern input {
  width: 100%;
  padding: 10px;
  margin-top: 4px;
  border-radius: 6px;
  border: 1px solid #d1d5db;
}

.login-button {
  width: 100%;
  margin-top: 18px;
  padding: 12px;
  border: 0;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  background: linear-gradient(#facc15, #f59e0b);
  color: #111827;
}

.login-button:hover {
  filter: brightness(1.05);
}

.login-button-secondary {
  display: inline-block;
  width: 100%;
  margin-top: 10px;
  padding: 12px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  background: #111827;
  color: #ffffff;
}

.login-button-secondary:hover {
  filter: brightness(1.08);
}

.login-error {
  background: #fee2e2;
  color: #b91c1c;
  padding: 8px;
  border-radius: 6px;
  margin-bottom: 10px;
}

.login-footer {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  text-align: center;
  color: rgba(255,255,255,.8);
  font-size: 12px;
}
