:root {
  --glass-bg: rgba(22, 27, 34, 0.85);
  --glass-border: rgba(48, 54, 61, 0.6);
  --accent-1: #10b981;
  --accent-2: #06b6d4;
  --bg-primary: #0d1117;
  --bg-secondary: #161b22;
  --text-primary: #e6edf3;
  --glow-green: rgba(16, 185, 129, 0.4);
}

html,
body {
  height: 100%;
  background: #0d1117 !important;
  background-color: #0d1117 !important;
}

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  background: #0d1117 !important;
  background-color: #0d1117 !important;
  -webkit-font-smoothing: antialiased;
  color: var(--text-primary, #e6edf3);
}

.layout-shell {
  min-height: 100vh;
}

.left-panel,
.form-panel {
  width: 100%;
}

.form-panel {
  background:
    linear-gradient(rgb(0 0 0 / 90%), rgb(0 0 0 / 90%)),
    url('../image/trade-bg.jpg') center center / cover no-repeat;
}

@media (max-width:1023px) {
  .left-panel {
    padding: 3.5rem 2rem 2.75rem;
    min-height: 320px;
  }

  .form-panel {
    padding: 3rem 1.75rem;
  }
}

@media (min-width:1024px) {
  .layout-shell {
    flex-direction: row;
  }

  .left-panel {
    width: 50%;
    min-height: 100vh;
  }

  .form-panel {
    width: 50%;
    min-height: 100vh;
    padding: 4.5rem 3.5rem;
  }
}

.bg-blue-side {
  background:
    linear-gradient(180deg, rgba(124, 58, 237, 0.92), rgba(6, 182, 212, 0.88)),
    radial-gradient(1000px 420px at 20% 20%, rgba(255, 255, 255, 0.08), rgba(7, 11, 22, 0) 40%);
  box-shadow: inset 0 -80px 120px rgba(2, 6, 23, 0.45);
  position: relative;
  overflow: hidden;
}

.left-logo {
  position: absolute;
  top: 1rem;
  left: 1rem;
  height: 56px;
  width: auto;
  z-index: 20;
  border-radius: 0.5rem;
  padding: 4px;
  background: rgba(13, 17, 23, 0.9) !important;
  box-shadow: 0 8px 24px rgba(2, 6, 23, 0.45);
}

.glass-card {
  background: rgba(22, 27, 34, 0.85) !important;
  background-color: #161b22 !important;
  border: 1px solid rgba(48, 54, 61, 0.6) !important;
  border-radius: 1rem;
  box-shadow: 0 8px 30px rgba(2, 6, 23, 0.6);
  animation: cardIn .5s ease both;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

@keyframes cardIn {
  from {
    transform: translateY(8px);
    opacity: 0
  }

  to {
    transform: translateY(0);
    opacity: 1
  }
}

.input-field {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border-radius: 0.75rem;
  background: rgba(13, 17, 23, 0.9) !important;
  background-color: #0d1117 !important;
  color: #e6eef8 !important;
  border: 1px solid rgba(48, 54, 61, 0.6) !important;
  outline: none;
  transition: box-shadow .18s ease, border-color .18s ease;
}

.input-field::placeholder {
  color: rgba(230, 238, 248, 0.48);
}

.input-field:focus {
  box-shadow: 0 6px 18px rgba(99, 102, 241, 0.12);
  border-color: rgba(124, 58, 237, 0.9);
}

.password-wrapper {
  position: relative;
}

.password-wrapper .input-field {
  padding-right: 2.75rem;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 0.65rem;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.35);
  border: 1px solid rgba(148, 163, 184, 0.18);
  color: #e2e8f0;
  cursor: pointer;
  transition: background .18s ease, color .18s ease;
}

.password-toggle:hover {
  background: rgba(124, 58, 237, 0.28);
  border-color: rgba(124, 58, 237, 0.45);
  color: #fff;
}

.password-toggle svg {
  width: 1.1rem;
  height: 1.1rem;
}

.password-toggle .icon-off {
  display: none;
}

.password-toggle.is-visible .icon-on {
  display: none;
}

.password-toggle.is-visible .icon-off {
  display: block;
}

.btn-primary {
  width: 100%;
  padding: 0.7rem 1rem;
  border-radius: 0.9rem;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.12);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(234, 88, 12, 0.12);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-secondary {
  width: 100%;
  padding: 0.65rem 1rem;
  border-radius: 0.9rem;
  background: rgba(13, 17, 23, 0.9) !important;
  color: #e6eef8;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: background .18s ease;
}

.btn-secondary:hover {
  background: rgba(13, 17, 23, 0.9) !important;
}

.otp-inputs {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.otp-input {
  width: 48px;
  height: 56px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  border-radius: 0.75rem;
  background: rgba(13, 17, 23, 0.9) !important;
  color: #e6eef8;
  border: 1px solid rgba(48, 54, 61, 0.6);
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.otp-input:focus {
  border-color: rgba(124, 58, 237, 0.9);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
}

/* OTP Display Box */
.otp-display-box {
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.15), rgba(6, 182, 212, 0.1));
  border: 1px solid rgba(52, 211, 153, 0.3);
  border-radius: 1rem;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.otp-display-box.hidden {
  display: none;
}

.otp-display-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.otp-display-code {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.5em;
  color: #5eead4;
  font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Code', monospace;
  text-shadow: 0 0 20px rgba(94, 234, 212, 0.4);
  padding: 0.5rem 0;
}

.otp-display-hint {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.5rem;
}

.step {
  display: none;
}

.step.active {
  display: block;
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.success-icon svg {
  width: 40px;
  height: 40px;
  color: #22c55e;
}

.muted {
  color: rgba(230, 238, 248, 0.6);
}

.inline-style-07fbba5bda {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.85), rgba(30, 41, 59, 0.90)), url('../image/trading-bg.jpg') center center / cover no-repeat;
  position: relative;
}

.inline-style-e60a90d752 {
  width: 90px;
}