/* Renders in Shadow DOM: site styles don't reach the chrome, so every value it needs is
   declared here or handed down as a custom property. The form in the slot is light DOM —
   it keeps the styles set on it in the Designer, and inherits colour and font from here. */

.xVotUHdiyDOYKjJLpYlk {
  position: fixed;
  inset: 0;
  /* Above the Nav Bar (1000) and its scrim, and anything else a page is likely to stack. */
  z-index: 2147483000;
  display: flex;
  box-sizing: border-box;
  padding: 1rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  background-color: rgba(0, 0, 0, var(--dm-scrim, 0.72));
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  container-type: inline-size;
  font-family: var(--dm-font, Figtree, Arial, sans-serif);
  -webkit-font-smoothing: antialiased;
  animation: uj_w9t86P1QgqlfZAEIQ var(--dm-fade, 400ms) ease-out;
}

.xVotUHdiyDOYKjJLpYlk[hidden] {
  display: none;
}

.xVotUHdiyDOYKjJLpYlk *,
.xVotUHdiyDOYKjJLpYlk *::before,
.xVotUHdiyDOYKjJLpYlk *::after {
  box-sizing: border-box;
}

/* Designer canvas: in the page flow, so it neither covers the page nor escapes the selection box. */
.wsc1cQx36i3mcYFTNZuj {
  position: relative;
  inset: auto;
  z-index: auto;
  padding: 3rem 1rem;
  overflow: visible;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  animation: none;
}

/* ---------- Panel ---------- */

.kCwrr3cTwGbSGb8LTH6B {
  position: relative;
  width: 100%;
  max-width: var(--dm-max-width, 32rem);
  /* Auto margins centre it and, unlike align-items: center, never push a tall panel's top
     out of reach when it outgrows a short viewport. */
  margin: auto;
  padding: 3rem 2.5rem 2.5rem;
  border: 1px solid color-mix(in srgb, var(--dm-ink, #e5e3d2) 8%, transparent);
  border-radius: 12px;
  background-color: var(--dm-bg, #161616);
  color: var(--dm-ink, #e5e3d2);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
  text-align: center;
  outline: none;
  animation: RxzexpkfCXlQsiDsLX0y var(--dm-fade, 400ms) cubic-bezier(0.2, 0.8, 0.2, 1);
}

.wsc1cQx36i3mcYFTNZuj .kCwrr3cTwGbSGb8LTH6B {
  animation: none;
}

.bPpyMgKpfxXAMKmDk7zj {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: color-mix(in srgb, var(--dm-ink, #e5e3d2) 68%, transparent);
  cursor: pointer;
  transition:
    color 0.18s ease,
    background-color 0.18s ease;
}

.bPpyMgKpfxXAMKmDk7zj:hover {
  color: var(--dm-accent, #ff5b19);
  background-color: color-mix(in srgb, var(--dm-ink, #e5e3d2) 6%, transparent);
}

.bPpyMgKpfxXAMKmDk7zj:focus-visible {
  outline: 2px solid var(--dm-accent, #ff5b19);
  outline-offset: 2px;
}

/* ---------- Brand & copy ---------- */

.CGMvBVwCgqQr8P5u_VVc {
  display: block;
  height: var(--dm-logo-height, 40px);
  width: auto;
  max-width: 100%;
  margin: 0 auto 1.75rem;
  object-fit: contain;
}

.JSnzKHP2U5ZS2qr4I0RN {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: inherit;
}

.VbQXfkZKUGK_Bcgtk41z {
  max-width: 26rem;
  margin: 0.625rem auto 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: color-mix(in srgb, var(--dm-ink, #e5e3d2) 68%, transparent);
}

/* ---------- Form slot ---------- */

/* Inheritance follows the flat tree, so the slotted form picks this up: fields read
   left-aligned even though the logo and heading above are centred. */
.hiwmxMS3iVzWXp_W9rzM {
  margin-top: 2rem;
  text-align: left;
}

.hiwmxMS3iVzWXp_W9rzM ::slotted(*) {
  width: 100%;
  margin-bottom: 0;
}

/* ---------- Narrow ---------- */

@container (max-width: 560px) {
  .kCwrr3cTwGbSGb8LTH6B {
    padding: 2.75rem 1.25rem 1.5rem;
    border-radius: 10px;
  }

  .CGMvBVwCgqQr8P5u_VVc {
    margin-bottom: 1.25rem;
  }

  .JSnzKHP2U5ZS2qr4I0RN {
    font-size: 1.5rem;
  }

  .hiwmxMS3iVzWXp_W9rzM {
    margin-top: 1.5rem;
  }
}

/* ---------- Motion ---------- */

@keyframes uj_w9t86P1QgqlfZAEIQ {
  from {
    opacity: 0;
  }
}

@keyframes RxzexpkfCXlQsiDsLX0y {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
  }
}

@media (prefers-reduced-motion: reduce) {
  .xVotUHdiyDOYKjJLpYlk,
  .kCwrr3cTwGbSGb8LTH6B {
    animation: none;
  }
}

