.auth-gate {
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 40px 20px 100px;
  text-align: center;
}

.auth-gate[hidden] { display: none; }

.auth-gate .auth-gate-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(79, 70, 229, .38);
  border-radius: 14px;
  color: var(--console-primary, #4f46e5);
  background: var(--console-primary-soft, rgba(79, 70, 229, .08));
}

.auth-gate .auth-gate-mark svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.7;
}

.auth-gate > p {
  margin: 25px 0 9px;
  color: var(--console-primary, #4f46e5);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
}

.auth-gate h1 {
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0;
}

.auth-gate > div:not(.auth-gate-mark) {
  margin-top: 13px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
}

.auth-gate .console-primary {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 27px;
  padding: 0 14px;
  border: 1px solid var(--console-primary, #4f46e5);
  border-radius: var(--console-radius-md, 10px);
  color: #fff;
  background: var(--console-primary, #4f46e5);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.auth-gate .console-primary:hover {
  border-color: var(--console-primary-hover, #4338ca);
  background: var(--console-primary-hover, #4338ca);
}

.auth-gate .console-primary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--console-primary-soft, rgba(79, 70, 229, .08));
}

.auth-gate .console-primary svg {
  width: 15px;
  height: 15px;
}

@media (max-width: 560px) {
  .auth-gate { padding-right: 18px; padding-left: 18px; }
  .auth-gate h1 { font-size: 24px; }
}
