body {
  background: #f0f2f7;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  min-height: 100vh;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card {
  background: white;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 40px 36px;
  width: calc(100vw - 32px);
  max-width: 380px;
  text-align: center;
}
.icon {
  width: 44px; height: 44px;
  background: #315fd8;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
h1 { font-size: 1.1rem; font-weight: 700; color: #1a1f36; margin-bottom: 4px; }
.sub { font-size: 0.78rem; color: #4f5874; margin-bottom: 24px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
input {
  width: 100%;
  min-height: 48px;
  padding: 10px 14px;
  border: 1.5px solid #e2e6ef;
  border-radius: 8px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.15s;
  margin-bottom: 14px;
}
input:focus, select:focus { border-color: #315fd8; }
select {
  width: 100%;
  min-height: 48px;
  padding: 10px 14px;
  border: 1.5px solid #e2e6ef;
  border-radius: 8px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.15s;
  margin-bottom: 14px;
  background: white;
  color: #1a1f36;
}
button {
  width: 100%;
  min-height: 48px;
  padding: 10px;
  background: #315fd8;
  color: white;
  border: none;
  border-radius: 8px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.15s;
}
button:hover { opacity: 0.9; }
button:disabled {
  cursor: wait;
  opacity: 0.65;
}
.pwd-wrap {
  position: relative;
}
.pwd-wrap input {
  padding-right: 52px;
}
.pwd-toggle {
  position: absolute;
  top: 0;
  right: 4px;
  width: 48px;
  min-height: 48px;
  padding: 0;
  background: transparent;
  color: #1a1f36;
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.pwd-toggle:hover, .pwd-toggle:focus {
  opacity: 1;
  background: #eef2ff;
}
.error {
  color: #b42318;
  font-size: 0.75rem;
  margin-top: 10px;
  display: none;
}
.error.show { display: block; }
.info {
  color: #1a3a7a;
  background: #eef2ff;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 0.78rem;
  margin: 0 0 14px;
  display: none;
  text-align: left;
}
.info.show { display: block; }
.psc-wrap {
  margin-top: 14px;
  text-align: center;
}
.psc-btn {
  width: auto;
  min-height: 56px;
  padding: 20px;
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  user-select: none;
  transition: opacity 0.2s, box-shadow 0.2s;
}
.psc-btn:hover {
  opacity: 0.92;
  box-shadow: 0 0 0 3px rgba(0, 0, 145, 0.15);
}
.psc-btn:focus-visible {
  outline: 3px solid #000091;
  outline-offset: 2px;
}
.psc-image {
  display: block;
  width: 220px;
  max-width: 100%;
  height: auto;
}
.version {
  margin-top: 16px;
  color: #69728f;
  font-size: 0.68rem;
}
