/*!*************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[3]!./app/globals.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************/
:root {
  --bg: #f4f7fb;
  --bg-soft: #ffffff;
  --card: rgba(255, 255, 255, 0.82);
  --card-strong: rgba(255, 255, 255, 0.92);
  --text: #0f172a;
  --muted: #5b6b82;
  --line: rgba(15, 23, 42, 0.12);
  --shadow: 0 18px 60px rgba(15, 23, 42, 0.12);
  --primary: #1d4ed8;
  --primary-2: #0f766e;
  --danger: #dc2626;
  --danger-bg: rgba(220, 38, 38, 0.08);
  --warning-bg: rgba(245, 158, 11, 0.12);
  --warning-text: #92400e;
  --badge: rgba(29, 78, 216, 0.08);
  --badge-text: #1e3a8a;
  --input-bg: rgba(255, 255, 255, 0.94);
}

html.dark {
  --bg: #07111f;
  --bg-soft: #0b1728;
  --card: rgba(12, 23, 40, 0.86);
  --card-strong: rgba(10, 20, 36, 0.94);
  --text: #f8fafc;
  --muted: #9fb0c7;
  --line: rgba(255, 255, 255, 0.1);
  --shadow: 0 20px 70px rgba(0, 0, 0, 0.38);
  --primary: #60a5fa;
  --primary-2: #34d399;
  --danger: #f87171;
  --danger-bg: rgba(248, 113, 113, 0.12);
  --warning-bg: rgba(245, 158, 11, 0.14);
  --warning-text: #fde68a;
  --badge: rgba(96, 165, 250, 0.12);
  --badge-text: #bfdbfe;
  --input-bg: rgba(6, 16, 30, 0.7);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: var(--bg);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(16, 185, 129, 0.1), transparent 24%),
    radial-gradient(circle at bottom center, rgba(250, 204, 21, 0.08), transparent 20%),
    var(--bg);
}

.page-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(100, 116, 139, 0.12) 1px, transparent 0);
  background-size: 22px 22px;
  opacity: 0.35;
  pointer-events: none;
}

.page-inner {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: 28px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-grid {
  width: 100%;
  max-width: 1320px;
  display: grid;
  grid-template-columns: 1fr minmax(360px, 520px) 1fr;
  grid-gap: 24px;
  gap: 24px;
  align-items: center;
}

.side-panel,
.auth-card,
.super-panel {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(18px);
          backdrop-filter: blur(18px);
}

.side-panel {
  background: var(--card);
  border-radius: 32px;
  padding: 24px;
}

.auth-card {
  background: var(--card-strong);
  border-radius: 34px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.auth-card::before,
.super-panel::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  filter: blur(50px);
  opacity: 0.24;
  pointer-events: none;
}

.auth-card::before {
  top: -50px;
  right: -60px;
  background: rgba(37, 99, 235, 0.28);
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-box {
  width: 68px;
  height: 68px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  display: grid;
  place-items: center;
  overflow: hidden;
  flex-shrink: 0;
}

html.dark .brand-box {
  background: rgba(255, 255, 255, 0.06);
}

.brand-box img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand-title {
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.2;
}

.brand-sub {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
}

.quote-box {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.5);
  padding: 16px 18px;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 700;
}

html.dark .quote-box {
  background: rgba(255, 255, 255, 0.04);
}

.top-tools {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 3;
}

.theme-toggle {
  border: 1px solid var(--line);
  background: var(--card-strong);
  color: var(--text);
  box-shadow: var(--shadow);
  border-radius: 999px;
  width: 46px;
  height: 46px;
  cursor: pointer;
  transition: transform 0.18s ease;
}

.theme-toggle:hover {
  transform: translateY(-1px);
}

.auth-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.auth-title {
  margin: 0;
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.auth-subtitle {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.badge-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--badge);
  color: var(--badge-text);
  font-weight: 900;
  border: 1px solid var(--line);
  flex-shrink: 0;
}

.form-block {
  margin-top: 20px;
}

.field {
  display: grid;
  grid-gap: 8px;
  gap: 8px;
  margin-bottom: 14px;
}

.field label {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text);
}

.input,
.select {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--input-bg);
  color: var(--text);
  border-radius: 20px;
  padding: 14px 15px;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.input:focus,
.select:focus {
  border-color: rgba(37, 99, 235, 0.55);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.error-box {
  margin-top: 2px;
  margin-bottom: 14px;
  border: 1px solid rgba(220, 38, 38, 0.25);
  background: var(--danger-bg);
  color: var(--danger);
  border-radius: 18px;
  padding: 12px 14px;
  font-weight: 700;
  font-size: 0.88rem;
  line-height: 1.45;
}

.context-box {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.42);
  margin-bottom: 14px;
}

html.dark .context-box {
  background: rgba(255, 255, 255, 0.03);
}

.context-title {
  font-size: 0.88rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.context-meta {
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--muted);
}

.context-meta strong {
  color: var(--text);
}

.btn {
  width: 100%;
  border: none;
  border-radius: 20px;
  padding: 14px 16px;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    opacity 0.18s ease,
    box-shadow 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:disabled {
  opacity: 0.64;
  cursor: not-allowed;
  transform: none;
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, #1d4ed8 0%, #0f766e 100%);
  box-shadow: 0 16px 35px rgba(29, 78, 216, 0.22);
}

.btn-secondary {
  margin-top: 10px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
}

html.dark .btn-secondary {
  background: rgba(255, 255, 255, 0.05);
}

.btn-link {
  margin-top: 12px;
  color: var(--primary);
  background: transparent;
  border: none;
  font-weight: 900;
  cursor: pointer;
  padding: 0;
}

.footer-note {
  margin-top: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.46);
  color: var(--muted);
  border-radius: 18px;
  padding: 13px 14px;
  font-size: 0.82rem;
  line-height: 1.5;
}

html.dark .footer-note {
  background: rgba(255, 255, 255, 0.04);
}

.footer-note strong {
  color: var(--text);
}

.bottom-sign {
  margin-top: 16px;
  text-align: center;
  font-size: 0.76rem;
  color: var(--muted);
}

.pill-version {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.52);
  padding: 8px 14px;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--muted);
}

html.dark .pill-version {
  background: rgba(255, 255, 255, 0.04);
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #10b981;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.66);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  z-index: 200;
}

.modal-wrap {
  position: fixed;
  inset: 0;
  z-index: 201;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.modal-card {
  width: 100%;
  max-width: 420px;
  border: 1px solid rgba(245, 158, 11, 0.26);
  background: var(--card-strong);
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.modal-emoji {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  font-size: 1.7rem;
  background: var(--warning-bg);
}

.modal-title {
  margin-top: 14px;
  text-align: center;
  font-size: 1.18rem;
  font-weight: 900;
}

.modal-text {
  margin-top: 10px;
  text-align: center;
  color: var(--muted);
  line-height: 1.6;
}

.modal-btn {
  margin-top: 18px;
  width: 100%;
  border: none;
  border-radius: 18px;
  padding: 13px 14px;
  font-weight: 900;
  cursor: pointer;
  color: white;
  background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
}

.super-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.18), transparent 24%),
    radial-gradient(circle at top right, rgba(168, 85, 247, 0.2), transparent 28%),
    radial-gradient(circle at bottom center, rgba(250, 204, 21, 0.12), transparent 24%),
    linear-gradient(160deg, #07101d 0%, #0b1630 45%, #091120 100%);
}

.super-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image: linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}

.super-grid {
  width: 100%;
  max-width: 1280px;
  display: grid;
  grid-template-columns: minmax(380px, 1.1fr) minmax(360px, 470px);
  grid-gap: 24px;
  gap: 24px;
  align-items: stretch;
}

.super-panel {
  position: relative;
  background: rgba(8, 15, 28, 0.76);
  border-radius: 36px;
  padding: 34px;
  overflow: hidden;
}

.super-panel::before {
  top: -45px;
  left: -45px;
  background: rgba(250, 204, 21, 0.32);
}

.super-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  border: 1px solid rgba(250, 204, 21, 0.22);
  background: rgba(250, 204, 21, 0.1);
  color: #fde68a;
  padding: 8px 13px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.super-title {
  margin: 18px 0 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.95;
  font-weight: 950;
  letter-spacing: -0.05em;
  color: white;
}

.super-title span {
  display: block;
  color: #facc15;
}

.super-text {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 720px;
  line-height: 1.75;
  font-size: 1rem;
}

.super-chip-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 14px;
  gap: 14px;
}

.super-chip {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  padding: 18px;
}

.super-chip strong {
  display: block;
  margin-bottom: 6px;
  color: #f8fafc;
}

.super-chip span {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
  font-size: 0.9rem;
}

.super-card {
  background: rgba(8, 15, 28, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
  border-radius: 36px;
  padding: 26px;
  -webkit-backdrop-filter: blur(18px);
          backdrop-filter: blur(18px);
  position: relative;
  overflow: hidden;
}

.super-card::before {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: rgba(168, 85, 247, 0.22);
  filter: blur(55px);
  pointer-events: none;
}

.super-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.super-badge {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  border: 1px solid rgba(250, 204, 21, 0.22);
  background: rgba(250, 204, 21, 0.12);
  color: #fde68a;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  font-weight: 900;
}

.super-card h2 {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 900;
  color: white;
  letter-spacing: -0.03em;
}

.super-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.super-card .field label {
  color: #f8fafc;
}

.super-card .input,
.super-card .select {
  color: white;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.super-card .input:focus,
.super-card .select:focus {
  border-color: rgba(250, 204, 21, 0.42);
  box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.12);
}

.super-card .error-box {
  color: #fecaca;
  background: rgba(127, 29, 29, 0.28);
  border-color: rgba(248, 113, 113, 0.2);
}

.super-btn {
  width: 100%;
  border: none;
  border-radius: 20px;
  padding: 14px 16px;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    opacity 0.18s ease;
}

.super-btn:hover {
  transform: translateY(-1px);
}

.super-btn:disabled {
  opacity: 0.64;
  cursor: not-allowed;
}

.super-btn-primary {
  color: #091120;
  background: linear-gradient(135deg, #fde68a 0%, #facc15 60%, #f59e0b 100%);
  box-shadow: 0 16px 34px rgba(245, 158, 11, 0.22);
}

.super-btn-secondary {
  margin-top: 10px;
  color: white;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.super-footer {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
}

.super-brand-mini {
  display: flex;
  gap: 10px;
  align-items: center;
}

.super-brand-mini img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 12px;
  padding: 3px;
}

.dashboard-shell {
  min-height: 100vh;
  padding: 28px 18px;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.12), transparent 22%),
    radial-gradient(circle at top right, rgba(16, 185, 129, 0.1), transparent 18%),
    var(--bg);
}

.dashboard-wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.dashboard-card {
  border: 1px solid var(--line);
  background: var(--card-strong);
  border-radius: 30px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.dashboard-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.dashboard-title {
  margin: 0;
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.dashboard-sub {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.6;
}

.dashboard-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 16px;
  gap: 16px;
}

.dashboard-stat {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.45);
}

html.dark .dashboard-stat {
  background: rgba(255, 255, 255, 0.03);
}

.dashboard-stat-label {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dashboard-stat-value {
  margin-top: 8px;
  font-size: 1.18rem;
  font-weight: 900;
}

@media (max-width: 1100px) {
  .auth-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
  }

  .side-panel {
    display: none;
  }

  .super-grid {
    grid-template-columns: 1fr;
    max-width: 640px;
  }
}

@media (max-width: 720px) {
  .page-inner,
  .dashboard-shell {
    padding: 16px;
  }

  .auth-card,
  .super-panel,
  .super-card,
  .dashboard-card {
    border-radius: 26px;
    padding: 20px;
  }

  .super-chip-grid,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .auth-title {
    font-size: 1.45rem;
  }

  .super-title {
    font-size: 2.4rem;
  }
}
