/* packages/app-shell/src/auth.css */
body:has(> .cl-auth-gate) {
  margin: 0;
}
.cl-auth-gate {
  box-sizing: border-box;
  display: grid;
  min-height: 100dvh;
  padding: max(24px, env(safe-area-inset-top)) 20px max(24px, env(safe-area-inset-bottom));
  place-items: center;
  background: #f5f6fa;
  color: #202536;
  font:
    16px/1.5 Inter,
    Arial,
    sans-serif;
}
.cl-auth-card {
  box-sizing: border-box;
  width: min(100%, 420px);
  padding: 32px;
  border: 1px solid #dde1e9;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 40px #1b25440a;
}
.cl-auth-brand {
  margin: 0 0 20px;
  color: #535e79;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.cl-auth-card h1 {
  margin: 0 0 8px;
  font: 500 32px/1.15 Georgia, serif;
}
.cl-auth-audience {
  margin: 0 0 24px;
  color: #535e79;
}
.cl-auth-card form {
  display: grid;
  gap: 10px;
}
.cl-auth-card label {
  font-size: 14px;
  font-weight: 600;
}
.cl-auth-card input {
  box-sizing: border-box;
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #aeb7c8;
  border-radius: 7px;
  background: #fff;
  color: #202536;
  font: inherit;
}
.cl-auth-card input + label {
  margin-top: 8px;
}
.cl-auth-card button,
.cl-auth-account button {
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid #bec6d5;
  border-radius: 7px;
  background: #fff;
  color: #26355e;
  font: inherit;
  cursor: pointer;
}
.cl-auth-card [data-auth-submit] {
  margin-top: 12px;
  border-color: #3048a5;
  background: #3048a5;
  color: white;
  font-weight: 600;
}
.cl-auth-card :focus-visible,
.cl-auth-account :focus-visible {
  outline: 3px solid #a4b9fa;
  outline-offset: 3px;
}
.cl-auth-error {
  margin: 12px 0;
  color: #a22727;
  font-size: 14px;
}
.cl-auth-account {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-block: 1px solid #dde1e9;
  background: #fff;
  color: #202536;
  font:
    13px/1.4 Inter,
    Arial,
    sans-serif;
}
.cl-auth-identity {
  min-width: 0;
  flex: 1;
  overflow-wrap: anywhere;
}
.cl-auth-identity strong,
.cl-auth-identity span {
  display: block;
}
.cl-auth-identity span {
  margin-top: 2px;
  color: #535e79;
}
.cl-auth-organisation {
  display: grid;
  min-width: 0;
  gap: 4px;
}
.cl-auth-organisation span {
  font-size: 12px;
}
.cl-auth-organisation select {
  box-sizing: border-box;
  max-width: 100%;
  min-height: 44px;
  padding: 6px 10px;
  border: 1px solid #aeb7c8;
  border-radius: 6px;
  background: #fff;
  color: #202536;
  font: inherit;
}
.cl-auth-offline {
  width: 100%;
  margin: 0;
  color: #75510b;
}
.cl-auth-account .cl-auth-error {
  width: 100%;
  margin: 0;
}
.cl-auth-profile-action {
  min-width: 44px;
  min-height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.cl-rail > .cl-auth-account {
  flex-direction: column;
  align-items: stretch;
  font-size: 11px;
}
.cl-auth-gate .cl-auth-account {
  padding-inline: 0;
}
@media (max-width: 480px) {
  .cl-auth-card {
    padding: 24px;
  }
  .cl-auth-account {
    gap: 8px;
  }
  .cl-auth-organisation {
    flex-basis: 100%;
  }
}
