/* ===== Design tokens ===== */
:root {
  --c-amber: #e89a3c;
  --c-amber-2: #d97a22;
  --amber-grad: linear-gradient(135deg, #ecae54 0%, #d97a22 100%);
  --c-dark: #0e1421;
  --c-dark-2: #121a2b;
  --c-dark-3: #1a2336;
  --c-cream: #fdf1e1;
  --c-text: #1f2937;
  --c-text-dim: #4A5565;
  --c-text-light: #cbd5e1;
  --c-border: #e5e7eb;
  --container: 1200px;
  --header-h: 70px;

  /* scrollbar */
  --scrollbar-size: 6px;
  --scrollbar-track: transparent;
  --scrollbar-thumb: rgba(232, 154, 60, 0.78);
  --scrollbar-thumb-hover: rgba(232, 154, 60, 0.75);
}

/* ===== Custom scrollbar ===== */
html {
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  min-width: 1200px;
}
body {
  min-width: 1200px;
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.page-scrollbar {
  position: fixed;
  top: 0;
  right: 0px;
  bottom: 0;
  z-index: 300;
  width: 8px;
  pointer-events: none;
}
.page-scrollbar-thumb {
  position: absolute;
  top: 0;
  left: 50%;
  width: 6px;
  min-height: 42px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(232, 154, 60, 0.6), rgba(172, 100, 0, 0.6));
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16), 0 6px 18px rgba(172, 100, 0, 0.28);
  transform: translateX(-50%);
  pointer-events: auto;
  cursor: grab;
}
.page-scrollbar-thumb:active {
  cursor: grabbing;
}

/* inner scroll areas (code block, modal, etc.) */
.custom-scroll,
.code-pane,
.modal {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.22) rgba(255, 255, 255, 0.06);
}

.custom-scroll::-webkit-scrollbar,
.code-pane::-webkit-scrollbar,
.modal::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.custom-scroll::-webkit-scrollbar-track,
.code-pane::-webkit-scrollbar-track,
.modal::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
}

.custom-scroll::-webkit-scrollbar-thumb,
.code-pane::-webkit-scrollbar-thumb,
.modal::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

.custom-scroll::-webkit-scrollbar-thumb:hover,
.code-pane::-webkit-scrollbar-thumb:hover,
.modal::-webkit-scrollbar-thumb:hover {
  background: var(--c-amber);
}

.container {
  width: var(--container);
  max-width: calc(100% - 48px);
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 36px;
  padding: 0 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-amber {
  background: var(--amber-grad);
  color: #fff;
  box-shadow: 0 6px 16px rgba(217, 122, 34, 0.35);
}
.btn-amber:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.btn-white {
  background: #fff;
  color: var(--c-amber-2);
}
.btn-white:hover {
  filter: brightness(0.97);
}

.btn-lg {
  height: 48px;
  padding: 0 30px;
  font-size: 20px;
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 150;
  height: var(--header-h);
  min-width: 1200px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}
.site-header.is-scrolled {
  background: rgba(14, 20, 33, 0.72);
  backdrop-filter: blur(14px);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}
.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Solid header variant for inner / stub pages */
.site-header.solid {
  position: fixed;
  background: var(--c-dark);
  backdrop-filter: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.logo .logo-mark {
  width: 184px;
}

.site-header.light{
  background: #fff;
}

.site-header.light .main-nav a{
  color: #101727;
}
.site-header.light .main-nav a:hover{
  color: var(--c-amber);
}

.site-header.light .header-actions .lang-btn{
  color: #101727;
  border: 1px solid #E0E0E0;
}
.site-header.light .header-actions .lang-btn:hover{
  color: var(--c-amber);
}

.site-header.light .header-actions .sign-in{
  color: #101727;
  border: 1px solid #E0E0E0;
}
.site-header.light .header-actions .sign-in:hover{
  color: var(--c-amber);
}

/* ===== Stub / placeholder page ===== */
.stub-main {
  min-height: calc(100vh - var(--header-h) - 360px);
  background: linear-gradient(180deg, #0e1421 0%, #16203a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-h) + 120px) 0 120px;
  color: #fff;
}
.stub-inner {
  max-width: 620px;
}
.stub-inner .eyebrow {
  display: inline-block;
  color: var(--c-amber);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.stub-inner h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 18px;
}
.stub-inner p {
  font-size: 16px;
  color: #aab4c5;
  line-height: 1.8;
  margin-bottom: 32px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
  margin-right: 36px;
  height: var(--header-h);
}
.main-nav > a {
  display: inline-flex;
  align-items: center;
  height: var(--header-h);
  flex-shrink: 0;
}
.nav-item {
  position: relative;
  height: var(--header-h);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-item > a {
  display: inline-flex;
  align-items: center;
  height: 100%;
}
.main-nav a {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}
.main-nav a:hover {
  color: var(--c-amber);
}
.main-nav > a.is-active,
.main-nav .nav-item > a.is-active {
  color: var(--c-amber);
}
.site-header.light .main-nav > a.is-active,
.site-header.light .main-nav .nav-item > a.is-active {
  color: var(--c-amber);
}

.nav-mega {
  position: absolute;
  top: calc(100% - 4px);
  left: 50%;
  width: 760px;
  padding: 32px 38px 36px;
  background: #fff;
  color: #111827;
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}
.nav-mega::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 4px 0 0 0;
  transform: translateX(-50%) rotate(45deg);
}
.nav-has-mega:hover .nav-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-mega h3 {
  position: relative;
  z-index: 1;
  font-size: 20px;
  font-weight: 700;
  color: #101727;
  margin-bottom: 20px;
}
.mega-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 56px;
}
.main-nav .mega-card {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #101727;
}
.main-nav .mega-card:hover {
  color: #101727;
}
.mega-icon {
  width: 40px;
  height: 40px;
}

.mega-card strong,
.mega-card em {
  display: block;
  font-style: normal;
}
.mega-card strong {
  color: #111827;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
}
.mega-card em {
  color: #4A5565;
  font-size: 16px;
  font-weight: 400;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-end {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  background-color: #fff;
}
.lang-btn:hover {
  background-color:  #f1f1f1;
}

.sign-in {
  color: #fff;
  font-size: 14px;
  padding: 0 14px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  line-height: 36px;
}
.sign-in:hover {
  color: var(--c-amber);
}

.nav-toggle {
  display: none;
}

/* ===== Sign in modal ===== */
.login-modal {
  position: relative;
  width: 525px;
  min-height: 620px;
  background: #fff;
  border-radius: 20px;
  padding: 60px 82px 40px;
  color: #111827;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.36);
  animation: modalIn 0.25s ease;
}
.login-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 32px;
  height: 32px;
  color: #111827;
  font-size: 32px;
  line-height: 1;
}
.login-close:hover {
  color: var(--c-amber-2);
}
.login-logo {
  width: 182px;
  margin: 0 auto 40px;
}
.login-modal h2 {
  text-align: center;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
  color: #101727;
  margin-bottom: 40px;
}
.login-form {
  width: 100%;
}
.login-field {
  margin-bottom: 20px;
}
.login-field label {
  display: block;
  font-size: 14px;
  color: #101727;
  margin-bottom: 8px;
}
.login-field input {
  width: 100%;
  height: 50px;
  border: 1px solid #d9dee7;
  border-radius: 6px;
  padding: 0 14px;
  color: #111827;
  font-size: 14px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.login-field input::placeholder {
  color: #9aa3b2;
}
.login-field input:focus {
  border-color: var(--c-amber);
  box-shadow: 0 0 0 3px rgba(232, 154, 60, 0.14);
}
.login-field.error input {
  border-color: #e5534b;
}
.password-wrap {
  position: relative;
}
.password-wrap input {
  padding-right: 48px;
}
.password-toggle {
  position: absolute;
  top: 50%;
  right: 12px;
  width: 34px;
  height: 24px;
  transform: translateY(-50%);
}
.password-toggle img {
  display: block;
  width: 24px;
  height: 24px;
}
.forgot-link {
  display: inline-block;
  color: #b66b00;
  font-size: 14px;
  font-weight: 700;
  margin: 5px 0 18px;
}
.forgot-link:hover,
.login-register a:hover {
  text-decoration: underline;
}
.login-tip {
  min-height: 18px;
  font-size: 12px;
  color: #e5534b;
  margin-bottom: 8px;
}
.login-submit {
  width: 100%;
  height: 42px;
  border-radius: 6px;
  background: linear-gradient(90deg, #e8a94e 0%, #b66b00 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}
.login-submit:hover {
  filter: brightness(1.04);
}
.login-register {
  text-align: center;
  margin-top: 18px;
  color: #4a5565;
  font-size: 14px;
}
.login-register a {
  color: #b66b00;
  font-weight: 700;
  margin-left: 8px;
}

/* ===== Language / currency modal ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: rgba(15, 20, 33, 0.55);
  backdrop-filter: blur(2px);
  transition: opacity 0.18s ease, visibility 0.18s ease;
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.modal-overlay.login-overlay {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
}

.modal {
  width: 760px;
  max-width: calc(100% - 40px);
  min-height: 420px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  animation: modalIn 0.25s ease;
}
@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-head {
  display: flex;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid var(--c-border);
  padding-bottom: 14px;
  position: relative;
}
.modal-tab {
  font-size: 20px;
  font-weight: 700;
  color: #9aa3b2;
  padding-bottom: 14px;
  margin-bottom: -15px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease;
}
.modal-tab.active {
  color: #111827;
  border-bottom-color: #111827;
}
.modal-close {
  margin-left: auto;
  color: #6b7280;
  font-size: 26px;
  line-height: 1;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.modal-close:hover {
  color: #111827;
}

.modal-panel {
  display: none;
  padding-top: 26px;
}
.modal-panel.active {
  display: block;
}
.modal-panel h3 {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 20px;
}

.opt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 16px;
}
.opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 15px;
  color: #374151;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.15s ease;
}
.opt:hover {
  background: #f3f4f6;
}
.opt.active {
  background: #eef1f6;
  color: #2440a8;
  font-weight: 600;
}
.opt .flag {
  font-size: 20px;
  line-height: 1;
}

.section {
  padding: 90px 0;
}
.section-head {
  text-align: center;
  max-width: 950px;
  margin: 0 auto 54px;
}
.section-head h2 {
  font-size: 50px;
  font-weight: 700;
  color: #101727;
  line-height: 1.3;
  margin-bottom: 22px;
}
.section-head p {
  font-size: 22px;
  color: var(--c-text-dim);
  line-height: 1.4;
}
.section-head .fs-18 {
  font-size: 18px;
}
.section-head.light h2 {
  color: #fff;
}
.section-head.light p {
  color: #fff;
}

/* ===== Contact (dark) ===== */
.contact {
  background: var(--c-dark);
  position: relative;
  overflow: hidden;
}
.contact::after {
  content: "";
  position: absolute;
  right: -100px;
  top: 40px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(216, 122, 34, 0.45), transparent 65%);
}
.contact-form {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.field label {
  font-size: 18px;
  color: #fff;
  margin-bottom: 10px;
}
.field input,
.field textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 12px 14px;
  color: #fff;
  font-size: 14px;
  transition: border-color 0.2s ease;
}
.field input::placeholder,
.field textarea::placeholder {
  color: #7e889a;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--c-amber);
}
.field textarea {
  resize: vertical;
}
.field.error input,
.field.error textarea {
  border-color: #e5534b;
}
.form-tip {
  min-height: 20px;
  font-size: 14px;
  margin-bottom: 10px;
  text-align: center;
}
.form-tip.error {
  color: #ff8077;
}
.form-tip.success {
  color: #5cd6a0;
}
.form-submit {
  text-align: center;
  margin-top: 12px;
}
.form-submit .btn {
  min-width: 182px;
}


/* ===== Footer ===== */
.site-footer {
  background: var(--c-dark);
  color: #cbd5e1;
  padding: 56px 0 28px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 36px;
}
.footer-brand {
  flex: 0 0 420px;
  max-width: 420px;
  padding-right: 36px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}
.footer-brand .logo {
  margin-bottom: 20px;
}
.footer-regions {
  display: flex;
  gap: 22px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 14px;
}
.footer-regions span:first-child {
  position: relative;
}
.footer-regions span:first-child::after {
  position: absolute;
  bottom: -6px;
  left: 0;
  content: '';
  width: 40px;
  height: 2px;
  background: #FF813D;
  border-radius: 2px;
}
.footer-brand .email {
  font-size: 14px;
  color: #fff;
  margin-bottom: 14px;
}
.footer-brand .addr {
  font-size: 14px;
  color: #fff;
  line-height: 1.7;
}
.footer-cols {
  display: flex;
  gap: 36px;
}
.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 16px;
  color: #fff;
  margin-bottom: 12px;
  transition: color 0.2s ease;
}
.footer-col a:hover {
  color: var(--c-amber);
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(175, 104, 5, 0.75);
  padding-top: 22px;
  font-size: 14px;
  color: #fff;
}
.back-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}
.back-top .arrow {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.back-top:hover {
  color: var(--c-amber);
}

.logo-or-link{
  display: flex;
  justify-content: space-between;
  margin-bottom: 35px;
}

/* ===== Motion system ===== */
@keyframes floatGlow {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(14px, -18px, 0) scale(1.06);
  }
}

@keyframes shimmerSweep {
  0% {
    transform: translateX(-130%) skewX(-18deg);
  }
  100% {
    transform: translateX(160%) skewX(-18deg);
  }
}

@keyframes softPulse {
  0%, 100% {
    box-shadow: 0 0 0 rgba(232, 154, 60, 0);
  }
  50% {
    box-shadow: 0 0 34px rgba(232, 154, 60, 0.24);
  }
}


.mega-card {
  position: relative;
  padding: 8px;
  border-radius: 12px;
  transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.mega-card:hover {
  background: linear-gradient(135deg, rgba(232, 154, 60, 0.12), rgba(255, 255, 255, 0.86));
  box-shadow: 0 14px 32px rgba(16, 23, 39, 0.08);
  transform: translateX(6px);
}

.mega-card:hover .mega-icon {
  filter: drop-shadow(0 8px 12px rgba(232, 154, 60, 0.28));
  transform: rotate(-6deg) scale(1.08);
}

.mega-icon {
  transition: transform 0.28s ease, filter 0.28s ease;
}

.btn,
.login-submit,
.register-submit,
.code-send {
  position: relative;
  overflow: hidden;
}

.btn::after,
.login-submit::after,
.register-submit::after,
.code-send::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -60%;
  width: 46%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: translateX(-130%) skewX(-18deg);
  pointer-events: none;
}

.btn:hover::after,
.login-submit:hover::after,
.register-submit:hover::after,
.code-send:hover::after {
  animation: shimmerSweep 0.72s ease;
}



.reveal-left {
  transform: translate3d(-42px, 18px, 0) scale(0.985);
}

.reveal-right {
  transform: translate3d(42px, 18px, 0) scale(0.985);
}

.reveal-zoom {
  transform: translate3d(0, 28px, 0) scale(0.94);
  filter: blur(4px);
}

.reveal-zoom.is-visible {
  filter: blur(0);
}

.contact::before {
  content: "";
  position: absolute;
  left: -150px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(70, 117, 255, 0.18), transparent 64%);
  animation: floatGlow 8s ease-in-out infinite;
}

.contact::after {
  animation: floatGlow 9s ease-in-out infinite reverse;
}

.field input,
.field textarea,
.login-field input,
.register-field input {
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.field input:focus,
.field textarea:focus,
.login-field input:focus,
.register-field input:focus {
  transform: translateY(-2px);
}

.footer-social a,
.back-top {
  transition: color 0.2s ease, transform 0.24s ease, filter 0.24s ease;
}

.footer-social a:hover,
.back-top:hover {
  transform: translateY(-4px);
  filter: drop-shadow(0 8px 12px rgba(232, 154, 60, 0.35));
}

.page-scrollbar-thumb {
  animation: softPulse 2.8s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

}

/* ===== Register page ===== */
.register-page {
  min-width: 1200px;
  max-height: 100vh;
  overflow: hidden;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-dark);
}
.register-shell {
  min-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  color: #fff;
  box-sizing: border-box;
  padding-top: 4%;
  
}
.register-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}
.register-logo img {
  width: 210px;
}
.register-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.register-content {
  display: grid;
  grid-template-columns: 1fr 540px;
  align-items: start;
}
.register-intro{
  width: 520px;
}
.register-intro h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
}
.register-visual {
  width: 350px;
  margin: 0 0 15px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.register-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.register-intro p {
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 8px;
}
.register-panel{
}
.register-panel {
  padding-top: 2px;
}
.register-panel h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
}
.register-form {
  width: 100%;
}
.register-field {
  margin-bottom: 15px;
}
.register-field label {
  display: block;
  color: #fff;
  font-size: 16px;
  margin-bottom: 5px;
}
.register-field input {
  width: 100%;
  height: 42px;
  border: 1px solid #d9dee7;
  border-radius: 5px;
  padding: 0 12px;
  background: #fff;
  color: #111827;
  font-size: 12px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.register-field input::placeholder {
  color: #9aa3b2;
}
.register-field input:focus {
  border-color: var(--c-amber);
  box-shadow: 0 0 0 3px rgba(232, 154, 60, 0.16);
}
.register-field.error input,
.register-check.error input {
  border-color: #e5534b;
}
.code-field {
  display: grid;
  grid-template-columns: 1fr 64px;
  gap: 8px;
}
.code-send {
  height: 42px;
  border-radius: 5px;
  color: #fff;
  font-size: 12px;
  background: linear-gradient(90deg, #e8a94e 0%, #b66b00 100%);
}
.code-send:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}
.register-field .password-wrap {
  position: relative;
}
.register-field .password-wrap input {
  padding-right: 42px;
}
.register-field .password-toggle {
  color: #111827;
}
.register-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #fff;
  font-size: 13px;
  margin: 8px 0;
  cursor: pointer;
}
.register-check input {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  accent-color: #b66b00;
  background-color: transparent;
  border: 1px solid #fff;
}
.register-check a {
  color: #e0a652;
  font-weight: 700;
}
.register-check a:hover,
.register-signin a:hover {
  text-decoration: underline;
}
.register-tip {
  min-height: 18px;
  margin: 8px 0;
  color: #ff8077;
  font-size: 14px;
}
.register-submit {
  width: 100%;
  height: 42px;
  border-radius: 5px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  background: linear-gradient(90deg, #e8a94e 0%, #b66b00 100%);
}
.register-submit:hover,
.code-send:hover {
  filter: brightness(1.04);
}
.register-signin {
  margin-top: 18px;
  text-align: center;
  color: #fff;
  font-size: 13px;
}
.register-signin a {
  color: #e0a652;
  font-weight: 700;
}