/* ============================================================
   css/login.css
   ============================================================ */

.login-wrap {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-start;
  padding: 24px;
  padding-top: 15vh;
  background: linear-gradient(160deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%);
}

.login-logo {
  margin-bottom: 32px; text-align: center;
}
.login-logo-icon {
  font-size: 56px; line-height: 1; margin-bottom: 8px;
}
.login-logo-title {
  font-size: 22px; font-weight: bold; color: #5daa52; letter-spacing: .05em;
}
.login-logo-sub {
  font-size: 12px; color: rgba(255,255,255,.5); margin-top: 4px;
}

.login-card {
  width: 100%; max-width: 360px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px; padding: 28px 24px;
  backdrop-filter: blur(10px);
}

.login-btn {
  width: 100%; padding: 14px;
  background: #2d5a27; color: #fff;
  border: none; border-radius: 10px;
  font-size: 16px; font-weight: bold;
  cursor: pointer; margin-top: 8px;
  transition: background .2s;
  display: block; text-align: center;
}
.login-btn:active { background: #1e3d1a; }

.login-error {
  background: rgba(192,57,43,.2);
  border: 1px solid rgba(192,57,43,.4);
  border-radius: 8px; padding: 10px 14px;
  color: #e74c3c; font-size: 13px;
  margin-top: 14px; text-align: center;
  display: none;
}
.login-error.show { display: block; }
