:root {
  --zpa-navy: #082f53;
  --zpa-blue: #0f4f78;
  --zpa-gold: #efb342;
  --zpa-pale: #f3f7fb;
  --zpa-border: #c9d8e6;
  --zpa-text: #102a43;
}

.zpa-panel,
.zpa-workspace {
  color: var(--zpa-text);
  background: #fff;
  border: 1px solid var(--zpa-border);
  border-radius: 10px;
  padding: clamp(1rem, 3vw, 1.75rem);
  margin: 1rem 0;
}

.zpa-panel h2,
.zpa-workspace h1,
.zpa-card h2 {
  color: var(--zpa-navy);
  line-height: 1.2;
}

.zpa-form .zpa-grid,
.zpa-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.zpa-form label {
  display: grid;
  gap: .4rem;
  font-size: .95rem;
  font-weight: 650;
}

.zpa-form input,
.zpa-login input[type="text"],
.zpa-login input[type="password"] {
  box-sizing: border-box;
  width: 100%;
  min-height: 44px;
  border: 1px solid #9db2c6;
  border-radius: 6px;
  padding: .65rem .75rem;
  font: inherit;
}

.zpa-form .zpa-wide { grid-column: 1 / -1; }
.zpa-consent { margin: 1rem 0; grid-template-columns: auto 1fr !important; align-items: start; }
.zpa-consent input { width: auto; min-height: 0; margin-top: .2rem; }
.zpa-honeypot { position: absolute !important; left: -10000px !important; }

.zpa-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: .65rem 1rem;
  border: 1px solid var(--zpa-gold);
  border-radius: 6px;
  background: var(--zpa-gold);
  color: #10243a;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
}

.zpa-button-secondary { background: #fff; border-color: #91abc2; }
.zpa-help { color: #536d82; font-size: .9rem; }
.zpa-notice { padding: .9rem 1rem; border-left: 4px solid var(--zpa-gold); background: #fff7e4; color: var(--zpa-text); }
.zpa-kicker { margin: 0 0 .35rem; color: var(--zpa-blue); font-size: .8rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.zpa-card { display: flex; flex-direction: column; min-height: 170px; padding: 1.1rem; border: 1px solid var(--zpa-border); border-top: 3px solid var(--zpa-gold); border-radius: 8px; background: var(--zpa-pale); }
.zpa-card h2 { margin: 0 0 .5rem; font-size: 1.15rem; }
.zpa-card a { margin-top: auto; color: var(--zpa-blue); font-weight: 750; }
.zpa-document-list { display: grid; gap: .75rem; }
.zpa-document-list article { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem; border: 1px solid var(--zpa-border); border-radius: 8px; }
.zpa-document-list span { display: block; color: #5b7185; font-size: .85rem; }
.zpa-empty { padding: 1rem; border: 1px dashed var(--zpa-border); background: var(--zpa-pale); }

@media (max-width: 700px) {
  .zpa-form .zpa-grid,
  .zpa-card-grid { grid-template-columns: 1fr; }
  .zpa-document-list article { align-items: stretch; flex-direction: column; }
}
