:root {
  font-family:Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
  color:#122f43;
  background:#f1f5f8;
  font-synthesis:none;
  color-scheme:light;
  --navy:#072e49;
  --teal:#007c80;
  --muted:#526675;
  --line:#cbd6de;
  --error:#a22b2b;
}
* {
  box-sizing:border-box;
}
body {
  margin:0;
  min-height:100dvh;
  display:flex;
  flex-direction:column;
}
button,input {
  font:inherit;
}
button,a,input,summary {
  touch-action:manipulation;
}
a {
  color:var(--teal);
  text-decoration:none;
  font-weight:600;
}
a:hover {
  text-decoration:underline;
}
button {
  cursor:pointer;
}
button:disabled {
  cursor:wait;
  opacity:.65;
}
button:focus-visible,a:focus-visible,summary:focus-visible {
  outline:3px solid #009ea5;
  outline-offset:4px;
}
[hidden] {
  display:none!important;
}
.shell {
  flex:1;
  min-height:0;
  display:grid;
  place-items:center;
  padding:48px 24px;
  background:radial-gradient(ellipse at 50% 0,#e6f0f4,transparent 70%);
}
.card {
  width:100%;
  max-width:504px;
  padding:44px 44px 26px;
  background:#fff;
  border:1px solid #e0e8ed;
  border-radius:24px;
  box-shadow:0 12px 60px #15394e0a;
}
.brand {
  display:block;
  width:240px;
  height:85px;
  position:relative;
  overflow:hidden;
  background:#fff;
  margin:0 auto 40px;
}
.brand img {
  position:absolute;
  width:115.84%;
  max-width:none;
  height:auto;
  left:-8.4%;
  top:-72.5843%;
}
h1 {
  font-size:1.75rem;
  font-weight:700;
  letter-spacing:-.045em;
  line-height:1.2;
  margin:0 0 30px;
  color:var(--navy);
}
h2 {
  font-size:1.25rem;
  line-height:1.35;
  letter-spacing:-.025em;
  margin:24px 0 12px;
}
p {
  line-height:1.65;
}
form {
  display:flex;
  flex-direction:column;
}
label {
  font-size:.9375rem;
  font-weight:600;
  margin-bottom:9px;
}
.label-row {
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:6px;
  margin-top:22px;
  margin-bottom:9px;
}
.label-row label {
  margin:0;
}
.label-row a {
  font-size:.8125rem;
  line-height:1.6;
}
input {
  min-height:54px;
  width:100%;
  min-width:0;
  border:1px solid var(--line);
  border-radius:11px;
  background:#fff;
  padding:14px 15px;
  font-size:1rem;
  color:#122f43;
  box-shadow:0 1px 2px #102e4003;
  outline:none;
  transition:border-color .15s,box-shadow .15s;
}
input::placeholder {
  color:#738493;
}
input:focus {
  border-color:var(--teal);
  box-shadow:0 0 0 3px #00858b20;
}
input:autofill {
  box-shadow:0 0 0 100px #f4fafb inset;
}
.password-field {
  position:relative;
}
.password-field input {
  padding-right:85px;
}
.show-password {
  position:absolute;
  right:7px;
  top:5px;
  min-width:70px;
  min-height:44px;
  border:0;
  background:transparent;
  color:var(--teal);
  font-weight:600;
  font-size:.8125rem;
  border-radius:7px;
}
.show-password:hover {
  background:#f0f7f8;
}
form>label:not(:first-child) {
  margin-top:22px;
}
.primary,.secondary {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  width:100%;
  min-height:54px;
  border-radius:11px;
  padding:14px 20px;
  font-weight:650;
  font-size:1rem;
  text-align:center;
  line-height:1.5;
  border:1px solid transparent;
}
.primary {
  background:var(--navy);
  color:#fff;
  margin-top:26px;
  box-shadow:0 4px 10px #082f4912;
}
.primary:hover {
  background:#10455e;
  text-decoration:none;
}
.secondary {
  background:#fff;
  border-color:var(--line);
  color:var(--navy);
  margin-top:18px;
}
.secondary:hover {
  background:#f4f8fa;
  text-decoration:none;
}
.link-button {
  cursor:pointer;
}
.alternate {
  font-size:.9375rem;
  text-align:center;
  margin:26px 0 0;
  color:var(--muted);
}
.alternate a {
  margin-left:5px;
}
.intro {
  font-size:1rem;
  color:var(--muted);
  margin:-12px 0 24px;
}
.link-button+.intro {
  margin-top:16px;
}
.hint {
  font-size:.8125rem;
  color:var(--muted);
  margin:10px 0 0;
}
.feedback {
  padding:12px 14px;
  background:#fdf3f2;
  color:var(--error);
  border:1px solid #edceca;
  border-radius:10px;
  font-size:.875rem;
  line-height:1.55;
  margin:18px 0 0;
}
.feedback.success {
  color:#006961;
  background:#edf8f4;
  border-color:#c5e2d8;
}
.back {
  display:inline-block;
  font-size:.875rem;
  padding:8px 0;
  margin:-12px 0 24px;
}
.text-button {
  border:0;
  background:transparent;
  color:var(--teal);
  min-height:48px;
  padding:12px 0;
  display:block;
  font-size:.875rem;
  font-weight:600;
  margin:16px auto 0;
}
.text-button:hover {
  text-decoration:underline;
}
footer {
  display:flex;
  flex-direction:column;
  gap:25px;
  align-items:center;
  margin-top:36px;
  padding-top:26px;
  border-top:1px solid #e9eef2;
}
footer a {
  font-size:.875rem;
}
.local-notice {
  padding:10px 18px;
  background:#e9f3f4;
  border-bottom:1px solid #c7dee0;
  text-align:center;
  color:#345d66;
  font-size:.8125rem;
  line-height:1.6;
}
.local-notice a {
  margin-left:10px;
  text-decoration:underline;
}
.status-mark {
  width:52px;
  height:52px;
  display:grid;
  place-items:center;
  background:#eaf6f3;
  color:var(--teal);
  border-radius:50%;
  font-size:1.7rem;
  margin-bottom:22px;
}
.code-input {
  font-size:1.5rem;
  letter-spacing:.3em;
  text-align:center;
}
.account-email {
  word-break:break-word;
  color:var(--muted);
  margin:-10px 0 24px;
}
.account-state {
  display:flex;
  align-items:center;
  gap:10px;
  font-size:.9375rem;
  background:#edf7f4;
  color:#216559;
  border-radius:12px;
  padding:16px;
  margin:24px 0;
}
.state-dot {
  width:8px;
  height:8px;
  border-radius:50%;
  background:#13816c;
}
.qr-code {
  display:block;
  margin:16px auto;
  max-width:100%;
  height:auto;
}
details {
  font-size:.875rem;
  color:var(--muted);
  margin:16px 0 24px;
}
summary {
  cursor:pointer;
  padding:8px 0;
}
code {
  display:block;
  overflow-wrap:anywhere;
  line-height:1.6;
  background:#f2f6f8;
  padding:12px;
  border-radius:8px;
}
pre {
  white-space:pre-wrap;
  overflow-wrap:anywhere;
  background:#f2f6f8;
  padding:20px;
  line-height:1.9;
  border-radius:12px;
  font-size:.9375rem;
  text-align:center;
}
.local-mail-action {
  display:block;
  text-align:center;
  font-size:.875rem;
  margin-top:22px;
}
.mail-list {
  display:grid;
  gap:12px;
  margin-top:24px;
}
.mail-item {
  border:1px solid #d9e3e9;
  border-radius:12px;
  padding:18px;
  overflow-wrap:anywhere;
}
.mail-item h2 {
  margin:0 0 8px;
  font-size:1rem;
}
.mail-item p {
  margin:0 0 10px;
  font-size:.875rem;
  color:var(--muted);
}
.mail-item a {
  font-size:.875rem;
}
.mail-empty {
  color:var(--muted);
}
@media(prefers-reduced-motion:reduce) {
  * {
    transition:none!important;
  }
}
@font-face {
  font-family:'Google Sans';
  font-style:normal;
  font-weight:500;
  font-display:swap;
  src:url('/assets/google-sans.ttf') format('truetype');
}
.google-button {
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  width:100%;
  min-height:52px;
  padding:12px;
  border:1px solid #747775;
  border-radius:11px;
  background:#fff;
  color:#1f1f1f;
  font:500 14px/20px 'Google Sans',Arial,sans-serif;
}
.google-button img {
  position:absolute;
  left:16px;
  display:block;
  object-fit:contain;
}
.google-button:hover {
  background:#f8fafb;
  box-shadow:0 1px 3px #00000012;
}
.google-button:disabled {
  opacity:.65;
  cursor:wait;
}
.google-unavailable {
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  margin:0;
  padding:10px 12px;
}
.divider {
  display:flex;
  align-items:center;
  gap:14px;
  color:var(--muted);
  font-size:.8125rem;
  line-height:1.5;
  margin:25px 0;
}
.divider:before,.divider:after {
  content:'';
  height:1px;
  flex:1;
  background:var(--line);
}
#security-backup-link {
  display:block;
  font-size:.875rem;
  text-align:center;
  margin-top:18px;
}
@media(max-width:560px) {
  :root {
    background:#fff;
  }
  .shell {
    display:block;
    padding:16px 24px;
    background:#fff;
  }
  .card {
    border:0;
    box-shadow:none;
    border-radius:0;
    padding:0;
    max-width:400px;
    margin:auto;
  }
  .local-notice {
    font-size:.75rem;
  }
  .label-row {
    gap:8px;
  }
  .label-row a {
    font-size:.8125rem;
  }
  .brand {
    width:190px;
    height:67px;
    margin-bottom:16px;
  }
  h1 {
    font-size:1.625rem;
    margin-bottom:20px;
  }
  input {
    min-height:48px;
    padding:11px 14px;
  }
  .show-password {
    top:2px;
  }
  .label-row,form>label:not(:first-child) {
    margin-top:16px;
  }
  label,.label-row {
    margin-bottom:7px;
  }
  .primary,.secondary {
    min-height:48px;
    padding:11px 16px;
  }
  .primary {
    margin-top:20px;
  }
  .google-button {
    min-height:48px;
  }
  .divider {
    margin:14px 0;
  }
  .alternate {
    margin-top:16px;
  }
  .alternate a {
    display:inline-flex;
    align-items:center;
    min-height:36px;
  }
  footer {
    margin-top:18px;
    padding-top:8px;
    gap:0;
  }
  footer a {
    display:flex;
    align-items:center;
    min-height:44px;
  }
  .local-notice {
    padding:6px 12px;
  }
  .hint {
    margin-top:8px;
  }
}
@media(min-width:561px) and (max-height:950px) {
  .shell {
    padding:12px 24px;
  }
  .card {
    padding:24px 36px 16px;
    max-width:464px;
  }
  .brand {
    width:190px;
    height:67px;
    margin-bottom:16px;
  }
  h1 {
    font-size:1.625rem;
    margin-bottom:20px;
  }
  input {
    min-height:48px;
    padding:11px 14px;
  }
  .show-password {
    top:2px;
  }
  .label-row,form>label:not(:first-child) {
    margin-top:16px;
  }
  label,.label-row {
    margin-bottom:7px;
  }
  .primary,.secondary {
    min-height:48px;
    padding:11px 16px;
  }
  .primary {
    margin-top:20px;
  }
  .google-button {
    min-height:48px;
  }
  .divider {
    margin:14px 0;
  }
  .alternate {
    margin-top:16px;
  }
  .alternate a,footer a {
    display:inline-flex;
    align-items:center;
    min-height:36px;
  }
  footer {
    margin-top:18px;
    padding-top:8px;
    gap:0;
  }
  .hint {
    margin-top:8px;
  }
}
@media(max-width:560px) and (max-height:700px) {
  .shell {
    padding:10px 24px;
  }
  .brand {
    width:170px;
    height:60px;
  }
  h1 {
    margin-bottom:16px;
  }
  .divider {
    margin:10px 0;
  }
  .alternate {
    margin-top:12px;
  }
  .primary {
    margin-top:16px;
  }
  footer {
    margin-top:10px;
  }
}
@media(min-width:561px) and (max-height:760px) {
  .shell {
    padding:6px 24px;
  }
  .card {
    padding:12px 32px 8px;
  }
  .brand {
    width:140px;
    height:50px;
    margin-bottom:8px;
  }
  h1 {
    font-size:1.5rem;
    margin-bottom:12px;
  }
  .divider {
    margin:8px 0;
  }
  .primary,.secondary {
    min-height:44px;
    padding:9px 16px;
  }
  .primary {
    margin-top:12px;
  }
  .alternate {
    margin-top:8px;
  }
  footer {
    margin-top:6px;
    padding-top:4px;
  }
  footer a {
    min-height:32px;
  }
}
@media(max-width:560px) and (max-height:600px) {
  .shell {
    padding:8px 24px;
  }
  .brand {
    width:140px;
    height:50px;
    margin-bottom:8px;
  }
  h1 {
    margin-bottom:12px;
  }
  .label-row,form>label:not(:first-child) {
    margin-top:12px;
  }
  .primary {
    margin-top:12px;
  }
  .alternate {
    margin-top:8px;
  }
}
.auth-footer {
  flex-direction:row;
  justify-content:center;
  flex-wrap:wrap;
  gap:0 18px;
}
.public-document .document-shell {
  flex:1;
  width:100%;
  padding:32px 24px;
}
.public-document .document-card {
  width:100%;
  max-width:760px;
  margin:0 auto;
  padding:32px 40px;
  border:1px solid #e0e8ed;
  border-radius:20px;
  background:#fff;
  overflow-wrap:anywhere;
}
.public-document .about-card {
  max-width:560px;
}
.public-document .brand {
  width:190px;
  height:67px;
  margin-bottom:24px;
}
.public-document h1 {
  font-size:1.75rem;
  margin-bottom:16px;
}
.public-document h2 {
  margin-top:28px;
}
.public-document p {
  margin:0 0 16px;
  color:var(--muted);
}
.public-document .document-lead {
  color:var(--navy);
  font-size:1.125rem;
  font-weight:600;
}
.public-document .document-date {
  font-size:.875rem;
}
.public-document .back {
  margin:0 0 16px;
}
.document-actions {
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin:24px 0;
}
.document-actions .link-button {
  flex:1 1 170px;
  margin:0;
  min-height:48px;
}
.public-document .document-contact {
  font-size:.875rem;
}
.public-document .document-footer {
  flex-direction:row;
  flex-wrap:wrap;
  justify-content:center;
  gap:0 24px;
  margin-top:24px;
  padding-top:12px;
}
.public-document .document-footer a {
  display:inline-flex;
  align-items:center;
  min-height:44px;
}
@media(max-width:560px) {
  .public-document .document-shell {
    padding:20px 24px;
    background:#fff;
  }
  .public-document .document-card {
    border:0;
    border-radius:0;
    padding:0;
  }
  .public-document h1 {
    font-size:1.625rem;
  }
}
