/* ═══════════════════════════════════════════════
   login.css  –  Dashboard Login Page
   ═══════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; }

body.login-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a3d20 0%, #005c2e 40%, #007A3D 100%);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  padding: 1rem 1rem 3.5rem;
}

/* ── Borafusion login page footer ─────────────────────────────── */
.bf-login-footer {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 34px;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 11px;
  color: rgba(255,255,255,.65);
  letter-spacing: .02em;
}
.bf-login-footer img {
  height: 16px;
  width: auto;
  opacity: .85;
}

.login-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2.5rem 2.25rem 2rem;
  width: 100%;
  max-width: 420px;
}

.login-brand h4 {
  color: #1a1a2e;
  letter-spacing: -0.02em;
}

/* ── Form controls ───────────────────────── */
.form-control:focus,
.btn-outline-secondary:focus {
  border-color: #007A3D;
  box-shadow: 0 0 0 0.2rem rgba(0, 122, 61, 0.20);
}

.btn-success {
  background: #007A3D;
  border-color: #007A3D;
  padding: 0.6rem;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: background 0.2s, border-color 0.2s;
}
.btn-success:hover:not(:disabled) {
  background: #005c2e;
  border-color: #005c2e;
}

.input-group-text {
  background: #f8f9fa;
  color: #6c757d;
}

/* ── Role legend ─────────────────────────── */
.role-legend {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.role-badge {
  min-width: 68px;
  text-align: center;
  font-size: 0.72rem;
  padding: 0.3em 0.55em;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

/* clickable credential rows */
.role-cred-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.6rem;
  border: 1px solid #e9ecef;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.role-cred-item:hover {
  background: #f0fdf4;
  border-color: #007A3D44;
}
.role-cred-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.role-cred-email {
  font-size: 0.78rem;
  font-weight: 600;
  color: #1a1a2e;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.role-cred-pass {
  font-size: 0.72rem;
  color: #6c757d;
  font-family: 'Courier New', monospace;
  letter-spacing: 0.04em;
}
.role-cred-arrow {
  color: #adb5bd;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.role-cred-item:hover .role-cred-arrow {
  color: #007A3D;
}
