/* =====================
   LOGIN SCREEN
===================== */
#login-screen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(242,101,34,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(46,196,182,0.10) 0%, transparent 50%),
    linear-gradient(135deg, #0d1b2a 0%, #1e3450 60%, #1a3a5c 100%);
}

.login-box {
  background: white;
  border-radius: 20px;
  padding: 44px 38px;
  width: 420px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
}

.login-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.login-logo-mark {
  width: 44px; height: 44px;
  background: var(--orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: white;
}

.login-logo-text {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -1px;
}

.login-tagline {
  font-size: 13px;
  color: var(--gray-3);
  margin-bottom: 32px;
}

.login-section-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-4);
  margin-bottom: 14px;
  display: block;
}

/* Role cards */
.role-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 26px;
}

.role-card {
  padding: 18px 14px;
  border-radius: 14px;
  border: 2px solid var(--gray-2);
  text-align: center;
  transition: all 0.2s;
  background: white;
}

.role-card:hover {
  border-color: var(--orange);
  background: #fff9f6;
  transform: translateY(-1px);
}

.role-card.selected {
  border-color: var(--orange);
  background: #fff3e0;
}

.role-card-icon  { font-size: 28px; margin-bottom: 8px; }
.role-card-title { font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.role-card-sub   { font-size: 11px; color: var(--gray-3); }

/* Inputs */
.login-input {
  width: 100%;
  padding: 11px 14px;
  margin-bottom: 10px;
  border: 1px solid var(--gray-2);
  border-radius: 10px;
  font-size: 13px;
  outline: none;
  transition: border 0.15s;
}
.login-input:focus { border-color: var(--orange); }

/* Login button */
.login-btn {
  width: 100%;
  padding: 13px;
  border-radius: 10px;
  background: var(--orange);
  color: white;
  border: none;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.15s;
  margin-top: 4px;
}
.login-btn:hover { background: var(--orange-light); }

/* Divider */
.login-divider {
  text-align: center;
  font-size: 12px;
  color: var(--gray-3);
  margin: 16px 0;
}

/* Demo buttons */
.login-demo { display: flex; gap: 8px; }

.demo-btn {
  flex: 1;
  padding: 9px;
  border-radius: 9px;
  border: 1px solid var(--gray-2);
  background: white;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-4);
  transition: all 0.15s;
}
.demo-btn:hover { background: var(--gray-1); border-color: var(--gray-3); }
