/*!****************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[5].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[5].use[3]!./components/common/LoadingScreen/LoadingScreen.module.css ***!
  \****************************************************************************************************************************************************************************************************************************************************************************************************/
.LoadingScreen_loader__6Y6gP {
  width: 60px;
  aspect-ratio: 0.5;
  display: grid;
}

.LoadingScreen_loader__6Y6gP::before {
  content: "";
  width: 30%;
  aspect-ratio: 1;
  border-radius: 50%;
  margin: auto auto 0;
  background: #cf4647;
  animation: LoadingScreen_loaderBall__94a3o 0.5s cubic-bezier(0, 800, 1, 800) infinite;
}

.LoadingScreen_loader__6Y6gP::after {
  content: "";
  width: 100%;
  aspect-ratio: 1 / 0.866; /* 1/cos(30deg) ≈ 0.866 */
  margin: 0 auto auto;
  -webkit-clip-path: polygon(50% -50%, 100% 50%, 50% 150%, 0 50%);
          clip-path: polygon(50% -50%, 100% 50%, 50% 150%, 0 50%);
  background: #524656;
  animation: LoadingScreen_loaderHex___DMH2 0.5s linear infinite;
}

@keyframes LoadingScreen_loaderBall__94a3o {
  0%,
  2% {
    translate: 0 0%;
  }
  98%,
  to {
    translate: 0 -0.2%;
  }
}

@keyframes LoadingScreen_loaderHex___DMH2 {
  0%,
  5% {
    rotate: 0deg;
  }
  95%,
  to {
    rotate: -60deg;
  }
}

/*!**************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[5].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[5].use[3]!./components/common/FormModal/ModalGlassShell.module.css ***!
  \**************************************************************************************************************************************************************************************************************************************************************************************************/
/**
 * Modal glass panel: readable frosted face + explicit rim (double ring) + depth.
 * Tokens: `--modal-glass-*` from `ModalGlassShell.tsx`.
 */
.ModalGlassShell_root__Fs3ca {
  position: relative;
  box-sizing: border-box;
  isolation: isolate;
  border-radius: 20px;
  background: var(--modal-glass-face, rgba(255, 255, 255, 0.21));
  backdrop-filter: var(--modal-glass-blur, blur(24px) saturate(160%));
  -webkit-backdrop-filter: var(--modal-glass-blur, blur(24px) saturate(160%));
  /* Outer separation from scrim + inner lit edge (reads clearly on any tint). */
  border: 1px solid var(--modal-glass-border, rgba(255, 255, 255, 0.34));
  box-shadow: var(
    --modal-glass-shadow,
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 24px 64px rgba(0, 0, 0, 0.42),
    0 8px 24px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    inset 0 -1px 0 rgba(0, 0, 0, 0.18),
    inset 0 0 40px rgba(255, 255, 255, 0.05)
  );
  overflow: visible;
}

.ModalGlassShell_root__Fs3ca > * {
  position: relative;
  z-index: 1;
}

/* Top specular line — sits above face, below content chrome */
.ModalGlassShell_root__Fs3ca::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  border-radius: 1px;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    var(--modal-glass-specular, rgba(255, 255, 255, 0.75)),
    transparent
  );
  opacity: 0.95;
}

/* Left edge catch-light */
.ModalGlassShell_root__Fs3ca::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 10%;
  bottom: 14%;
  left: 0;
  width: 1px;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    var(--modal-glass-specular-soft, rgba(255, 255, 255, 0.55)),
    transparent,
    rgba(255, 255, 255, 0.12)
  );
  opacity: 0.85;
}

/*!**********************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[5].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[5].use[3]!./components/common/GlassToast/GlassToast.module.css ***!
  \**********************************************************************************************************************************************************************************************************************************************************************************************/
@keyframes GlassToast_iosToastIn__5Mgkk {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .GlassToast_card__ZkTPT {
    animation: none !important;
  }
}

/**
 * Above `FormModal` / dialog portals (`z-index: 16000`) so notifications stay visible
 * while a modal is open.
 */
.GlassToast_anchor__SOPGf {
  position: fixed;
  z-index: 20000;
  top: max(10px, env(safe-area-inset-top));
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: min(340px, calc(100vw - 20px));
  max-width: calc(100vw - 20px);
  pointer-events: none;
  font-family: inherit;
  box-sizing: border-box;
}

.GlassToast_card__ZkTPT {
  pointer-events: auto;
  position: relative;
  box-sizing: border-box;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px 9px 12px;
  padding-right: 36px;
  border-radius: 14px;
  animation: GlassToast_iosToastIn__5Mgkk 0.35s cubic-bezier(0.33, 1, 0.68, 1) both;
  color: rgba(255, 255, 255, 0.96);
  background: rgba(36, 36, 40, 0.72);
  backdrop-filter: blur(24px) saturate(1.35);
  -webkit-backdrop-filter: blur(24px) saturate(1.35);
  border: 0.5px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 8px 32px rgba(0, 0, 0, 0.35),
    0 2px 12px rgba(0, 0, 0, 0.2);
}

.GlassToast_cardSuccess__bw1bw {
  border-color: rgba(72, 199, 142, 0.35);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 8px 32px rgba(0, 0, 0, 0.35),
    0 0 0 0.5px rgba(52, 199, 126, 0.2);
}

.GlassToast_cardError__AfjTW {
  border-color: rgba(255, 99, 99, 0.35);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 8px 32px rgba(0, 0, 0, 0.35),
    0 0 0 0.5px rgba(255, 99, 99, 0.18);
}

.GlassToast_leadIcon__8ncMe {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 2px;
}

.GlassToast_iconSuccess__QXixt {
  color: #5fe0a3;
}

.GlassToast_iconError__llXVo {
  color: #ff8a8a;
}

.GlassToast_close__qotaO {
  position: absolute !important;
  top: 50%;
  right: 4px;
  transform: translateY(-50%);
  z-index: 2;
  padding: 4px !important;
  min-width: 28px !important;
  width: 28px !important;
  height: 28px !important;
  color: rgba(255, 255, 255, 0.45) !important;
  background: transparent !important;
  border-radius: 8px !important;
}

.GlassToast_close__qotaO:hover {
  color: rgba(255, 255, 255, 0.9) !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

.GlassToast_message__Cu_eB {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.01em;
  word-break: break-word;
  text-align: left;
  color: rgba(255, 255, 255, 0.95);
  -webkit-font-smoothing: antialiased;
}

