/* ════════════════════════════════════════════════════════════════
   PIC-OPS — css/login.css
   Uses the CSS variables already defined in styles.css
   ════════════════════════════════════════════════════════════════ */

.login-screen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  padding: 24px;
}

.login-card {
  width: 100%;
  max-width: 360px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}

.login-eyebrow {
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.login-wordmark {
  font-family: var(--font);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}
.login-wordmark .logo-pic { color: var(--green); }
.login-wordmark .logo-ops { color: var(--text); margin-left: 4px; }

.login-sub {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 24px;
}

.login-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted2);
  margin-bottom: 6px;
}

.login-input {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 16px;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font);
  font-size: 14px;
  outline: none;
  transition: border-color .15s;
}
.login-input:focus { border-color: var(--green); }

.login-error {
  font-size: 12px;
  color: var(--red);
  min-height: 16px;
  margin-bottom: 8px;
  display: none;
}
.login-error.show { display: block; }

.login-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  padding: 10px 0;
  font-size: 14px;
}
.login-submit:disabled { opacity: .6; cursor: not-allowed; }
