/* ==========================================
   OBTAINFX PREMIUM REDESIGN CUSTOM STYLES
   Colors:
   - Pure Black: #050505
   - Dark Black: #111111
   - Luxury Gold: #FF9F1C
   - Bright Orange: #FFA726
   - Neon Green: #00E676
   - Neon Red: #FF3838
   - White: #FFFFFF
   - Soft Gray: #BDBDBD
========================================== */

/* Global Reset & Base Styling */
:root {
  --pure-black: #050505;
  --dark-black: #111111;
  --luxury-gold: #ff9f1c;
  --bright-orange: #ffa726;
  --neon-green: #00e676;
  --neon-red: #ff3838;
  --white: #ffffff;
  --soft-gray: #bdbdbd;
  --font-poppins: "Poppins", sans-serif;
  --gold-glow: 0 0 15px rgba(255, 159, 28, 0.25);
  --gold-border: 1px solid rgba(255, 159, 28, 0.2);
}

body {
  background-color: var(--pure-black) !important;
  color: var(--white) !important;
  font-family: var(--font-poppins) !important;
  overflow-x: hidden;
}

/* Background Gradients & Glows */
.premium-bg {
  position: relative;
  background-color: var(--pure-black);
}

.premium-bg::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(255, 159, 28, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 1;
}

.premium-bg::after {
  content: "";
  position: absolute;
  bottom: 15%;
  right: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 167, 38, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 1;
}

/* Typography & Titles */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-poppins) !important;
  font-weight: 700;
}

.gradient-text {
  background: linear-gradient(135deg, #fff 30%, var(--luxury-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gold-text {
  color: var(--luxury-gold) !important;
  text-shadow: 0 0 8px rgba(255, 159, 28, 0.3);
}

/* Glassmorphism Navigation */
.premium-nav {
  background: rgba(5, 5, 5, 0.75) !important;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 159, 28, 0.15) !important;
  transition: all 0.3s ease;
}

.premium-nav.scrolled {
  background: rgba(5, 5, 5, 0.9) !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

/* Glassmorphism Premium Cards */
.glass-card {
  background: rgba(17, 17, 17, 0.6) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: var(--gold-border) !important;
  border-radius: 20px !important;
  padding: 25px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 159, 28, 0.05),
    transparent
  );
  transition: 0.5s;
}

.glass-card:hover::before {
  left: 100%;
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(255, 159, 28, 0.15);
  border-color: rgba(255, 159, 28, 0.45) !important;
}

/* Buttons */
.premium-btn {
  background: linear-gradient(
    135deg,
    var(--luxury-gold) 0%,
    var(--bright-orange) 100%
  );
  border: none;
  color: var(--pure-black) !important;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  box-shadow: 0 0 15px rgba(255, 159, 28, 0.3);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.premium-btn:hover {
  box-shadow: 0 0 25px rgba(255, 159, 28, 0.6);
  transform: scale(1.03);
}

.premium-btn-outline {
  background: transparent;
  border: 1px solid var(--luxury-gold);
  color: var(--luxury-gold) !important;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.premium-btn-outline:hover {
  background: rgba(255, 159, 28, 0.1);
  box-shadow: 0 0 15px rgba(255, 159, 28, 0.2);
  transform: scale(1.03);
}

/* Live Market Ticker */
.ticker-wrapper {
  background: var(--dark-black);
  border-top: 1px solid rgba(255, 159, 28, 0.15);
  border-bottom: 1px solid rgba(255, 159, 28, 0.15);
  overflow: hidden;
  white-space: nowrap;
  padding: 12px 0;
}

.ticker-track {
  display: inline-flex;
  animation: tickerInfinite 30s linear infinite;
  gap: 30px;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
}

.ticker-change-up {
  color: var(--neon-green);
  font-size: 0.8rem;
  font-weight: 600;
}

.ticker-change-down {
  color: var(--neon-red);
  font-size: 0.8rem;
  font-weight: 600;
}

@keyframes tickerInfinite {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* Indicator Badges */
.live-badge {
  background: rgba(0, 230, 118, 0.15);
  color: var(--neon-green);
  border: 1px solid var(--neon-green);
  border-radius: 50px;
  padding: 2px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.live-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: var(--neon-green);
  border-radius: 50%;
  display: inline-block;
  animation: blinkPulse 1.5s infinite;
}

@keyframes blinkPulse {
  0% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.3;
  }
}

/* Candlestick Canvas & Hero Elements */
#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero-content-wrap {
  position: relative;
  z-index: 10;
}

.hero-3d-graphic {
  position: relative;
  z-index: 10;
  animation: floatAnimation 6s ease-in-out infinite;
}

@keyframes floatAnimation {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(1deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

/* Interactive Charts */
.premium-chart-container {
  position: relative;
  width: 100%;
  height: 250px;
}

/* Plan Highlight */
.popular-plan-card {
  border: 2px solid var(--luxury-gold) !important;
  box-shadow: 0 10px 40px rgba(255, 159, 28, 0.25) !important;
  transform: scale(1.05);
  z-index: 5;
}

.popular-badge {
  position: absolute;
  top: -12px;
  right: 25px;
  background: linear-gradient(
    135deg,
    var(--luxury-gold) 0%,
    var(--bright-orange) 100%
  );
  color: var(--pure-black);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 15px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Circular Progress Custom */
.progress-circle-wrap {
  position: relative;
  width: 100px;
  height: 100px;
}

.progress-circle-svg {
  transform: rotate(-90deg);
}

.circle-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.05);
  stroke-width: 8;
}

.circle-progress {
  fill: none;
  stroke: var(--luxury-gold);
  stroke-width: 8;
  stroke-linecap: round;
  transition: stroke-dashoffset 1s ease-in-out;
}

.progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

/* Referral Node Graph */
.referral-network-svg {
  width: 100%;
  max-height: 400px;
}

.network-node {
  fill: var(--dark-black);
  stroke: var(--luxury-gold);
  stroke-width: 2;
  transition: all 0.3s ease;
}

.network-node:hover {
  fill: var(--luxury-gold);
  filter: drop-shadow(0 0 10px var(--luxury-gold));
  cursor: pointer;
}

.network-line {
  stroke: rgba(255, 159, 28, 0.25);
  stroke-width: 1.5;
  stroke-dasharray: 5, 5;
  animation: dashOffset 20s linear infinite;
}

@keyframes dashOffset {
  to {
    stroke-dashoffset: -100;
  }
}

/* Step Timeline Custom */
.timeline-premium {
  position: relative;
  padding-left: 30px;
}

.timeline-premium::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  height: 100%;
  width: 2px;
  background: linear-gradient(180deg, var(--luxury-gold) 0%, transparent 100%);
}

.timeline-step-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-step-item::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 5px;
  width: 14px;
  height: 14px;
  background: var(--luxury-gold);
  border: 3px solid var(--pure-black);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--luxury-gold);
  z-index: 2;
}

/* Animated FAQ Accordions */
.premium-accordion .accordion-item {
  background: rgba(17, 17, 17, 0.5) !important;
  border: 1px solid rgba(255, 159, 28, 0.15) !important;
  margin-bottom: 15px;
  border-radius: 12px !important;
  overflow: hidden;
}

.premium-accordion .accordion-button {
  background: transparent !important;
  color: var(--white) !important;
  font-weight: 600;
  border: none !important;
  box-shadow: none !important;
  padding: 20px;
}

.premium-accordion .accordion-button:not(.collapsed) {
  color: var(--luxury-gold) !important;
  border-bottom: 1px solid rgba(255, 159, 28, 0.1) !important;
}

.premium-accordion .accordion-button::after {
  filter: invert(1) sepia(1) saturate(5) hue-rotate(15deg);
}

.premium-accordion .accordion-body {
  background: transparent !important;
  color: var(--soft-gray);
  padding: 20px;
}

/* Input Fields Glow */
.premium-input {
  background: rgba(5, 5, 5, 0.8) !important;
  border: 1px solid rgba(255, 159, 28, 0.25) !important;
  border-radius: 10px !important;
  color: var(--white) !important;
  padding: 12px 18px !important;
  transition: all 0.3s ease !important;
}

.premium-input:focus {
  border-color: var(--luxury-gold) !important;
  box-shadow: 0 0 12px rgba(255, 159, 28, 0.3) !important;
  background: rgba(17, 17, 17, 0.95) !important;
}

.premium-input::placeholder {
  color: rgba(255, 255, 255, 0.3) !important;
}

/* Interactive Hover Features */
.feature-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  background: rgba(255, 159, 28, 0.1);
  border: 1px solid rgba(255, 159, 28, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--luxury-gold);
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.glass-card:hover .feature-icon-box {
  background: var(--luxury-gold);
  color: var(--pure-black);
  box-shadow: 0 0 15px rgba(255, 159, 28, 0.5);
  transform: rotate(5deg);
}

/* QR Code & Phone Glow */
.qr-code-wrapper {
  background: var(--white);
  padding: 10px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  display: inline-block;
}

.phone-mockup-wrap {
  filter: drop-shadow(0 0 25px rgba(255, 159, 28, 0.2));
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--pure-black);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 159, 28, 0.3);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--luxury-gold);
}

/* Live Market Prices Widget */
.premium-market-widget {
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.premium-market-widget:hover {
  box-shadow: 0 0 35px rgba(255, 159, 28, 0.35) !important;
  border-color: rgba(255, 159, 28, 0.6) !important;
  transform: translateY(-5px);
}

.market-list-container {
  max-height: 400px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none; /* Firefox */
}

.market-list-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

@media (max-height: 600px) {
  .market-list-container {
    max-height: 250px;
  }
}

.market-row {
  background: rgba(5, 5, 5, 0.4) !important;
  border: 1px solid rgba(255, 255, 255, 0.02) !important;
  transition: all 0.25s ease !important;
}

.market-row:hover {
  background: rgba(255, 159, 28, 0.08) !important;
  border-color: rgba(255, 159, 28, 0.25) !important;
  transform: translateX(3px);
}

.price-flash-up {
  color: var(--neon-green) !important;
  text-shadow: 0 0 8px rgba(0, 230, 118, 0.5);
  transition:
    color 0.1s ease,
    text-shadow 0.1s ease;
}

.price-flash-down {
  color: var(--neon-red) !important;
  text-shadow: 0 0 8px rgba(255, 56, 56, 0.5);
  transition:
    color 0.1s ease,
    text-shadow 0.1s ease;
}

.animate-pulse {
  animation: pulseIcon 1.5s infinite alternate;
}

@keyframes pulseIcon {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

/* About Statistics Card Styles */
.about-stats-card {
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.about-stats-card:hover {
  box-shadow: 0 0 35px rgba(255, 159, 28, 0.25) !important;
  border-color: rgba(255, 159, 28, 0.5) !important;
}

.about-stat-item {
  transition: all 0.3s ease !important;
  border: 1px solid rgba(255, 255, 255, 0.02) !important;
}

.about-stat-item:hover {
  background: rgba(255, 159, 28, 0.08) !important;
  border-color: rgba(255, 159, 28, 0.2) !important;
  box-shadow: 0 0 15px rgba(255, 159, 28, 0.1) !important;
  transform: translateY(-3px);
}

/* Footer Inline Contact Buttons */
.footer-inline-btn {
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.footer-inline-btn:hover {
  transform: translateY(-4px) scale(1.08);
}

.footer-inline-btn.telegram-btn:hover {
  box-shadow: 0 6px 15px rgba(0, 136, 204, 0.6) !important;
}

.footer-inline-btn.whatsapp-btn:hover {
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.6) !important;
}

/* ==========================================
   MOBILE NAVIGATION TOGGLE DARK THEME FIX
   ========================================== */
@media (max-width: 991px) {
  .menu,
  .menu.active,
  ul.menu,
  ul.menu.active,
  .menu--style1,
  .menu--style1.active,
  .header-wrapper .menu-area .menu,
  .header-section .menu,
  .header-section.header-fixed .menu {
    background: #050505 !important;
    background-color: #050505 !important;
    border: 1px solid rgba(255, 159, 28, 0.3) !important;
    border-top: none !important;
    border-radius: 0 0 16px 16px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    padding: 15px 0 !important;
  }

  .menu li,
  .menu--style1 li {
    width: 100% !important;
    background: transparent !important;
    background-color: transparent !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  }

  .menu li:last-child,
  .menu--style1 li:last-child {
    border-bottom: none !important;
  }

  .menu li a,
  .menu--style1 li a {
    color: #ffffff !important;
    background: transparent !important;
    background-color: transparent !important;
    padding: 14px 25px !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    display: block !important;
    transition: all 0.3s ease !important;
  }

  .menu li a:hover,
  .menu li a:focus,
  .menu li a.active,
  .menu--style1 li a:hover,
  .menu--style1 li a.active {
    background: rgba(255, 159, 28, 0.12) !important;
    color: var(--luxury-gold) !important;
    padding-left: 32px !important;
  }

  /* Specific styling for Login & Register links in mobile dropdown */
  .menu li.d-lg-none a[href*="login"] {
    color: var(--luxury-gold) !important;
    font-weight: 600 !important;
  }

  .menu li.d-lg-none a[href*="register"] {
    background: linear-gradient(
      135deg,
      var(--luxury-gold) 0%,
      var(--bright-orange) 100%
    ) !important;
    color: var(--pure-black) !important;
    margin: 12px 20px 8px 20px !important;
    border-radius: 10px !important;
    text-align: center !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(255, 159, 28, 0.3) !important;
  }

  .menu li.d-lg-none a[href*="register"]:hover {
    padding-left: 25px !important;
    box-shadow: 0 6px 20px rgba(255, 159, 28, 0.5) !important;
    transform: translateY(-2px) !important;
  }
}

/* ==========================================
   HOMEPAGE & GLOBAL RESPONSIVE OVERRIDES
   ========================================== */

/* 1. Prevent Horizontal Scrolling & Viewport Overflows */
html,
body,
section,
main,
.banner,
.about,
.statistics-section,
.footer,
.page-header,
.page-content {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
  box-sizing: border-box !important;
}

*,
*::before,
*::after {
  box-sizing: inherit !important;
}

/* 2. Contain Grid Containers & Row Overflows on Mobile */
@media (max-width: 768px) {
  .row {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .col-12,
  .col-sm-12,
  .col-md-12,
  .col-lg-12,
  [class*="col-"] {
    padding-right: 8px !important;
    padding-left: 8px !important;
  }
  .container,
  .container-fluid {
    padding-right: 15px !important;
    padding-left: 15px !important;
    overflow: hidden !important;
  }
}

/* 3. Media & Hero Canvas Containment */
img,
canvas,
video {
  max-width: 100% !important;
  height: auto !important;
}

/* Font Awesome SVG Icon Sizing Safety Lock */
svg.svg-inline--fa {
  height: 1em !important;
  width: auto !important;
  max-width: none !important;
  vertical-align: -0.125em !important;
}

#hero-canvas,
#about-canvas {
  max-width: 100vw !important;
  overflow: hidden !important;
}

/* 4. Hide Floating Background Shapes causing horizontal scroll on mobile */
@media (max-width: 991px) {
  [class*="shape-item"],
  [class*="bg-shape"],
  .contact__shape,
  .banner__shape,
  .about__shape,
  .shape,
  .statistics__shape {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
  }

  .banner {
    padding-top: 130px !important;
    padding-bottom: 60px !important;
  }

  .banner__content {
    text-align: left !important;
  }
}

/* ====================================================
   FORGOT PASSWORD & OTP VERIFICATION PREMIUM CARDS
   ==================================================== */

.ofx-auth-page {
  padding: 160px 0 90px 0 !important;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.ofx-auth-card {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  background: rgba(17, 17, 17, 0.9) !important;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 159, 28, 0.35) !important;
  border-radius: 24px !important;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.7),
    0 0 25px rgba(255, 159, 28, 0.12) !important;
  padding: 42px 35px !important;
  box-sizing: border-box;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.ofx-auth-card:hover {
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.8),
    0 0 35px rgba(255, 159, 28, 0.22) !important;
  border-color: rgba(255, 159, 28, 0.55) !important;
}

/* Top Icon Badge */
.ofx-auth-icon-badge {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 159, 28, 0.08);
  border: 1px solid rgba(255, 159, 28, 0.4);
  color: var(--luxury-gold, #ff9f1c);
  font-size: 1.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  box-shadow: 0 0 20px rgba(255, 159, 28, 0.2);
  transition: all 0.3s ease;
}

.ofx-auth-card:hover .ofx-auth-icon-badge {
  transform: scale(1.06);
  box-shadow: 0 0 28px rgba(255, 159, 28, 0.35);
  background: rgba(255, 159, 28, 0.14);
}

/* Typography */
.ofx-auth-title {
  font-family: "Poppins", sans-serif !important;
  font-size: 1.75rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  text-align: center;
  margin-bottom: 8px !important;
  letter-spacing: -0.3px;
}

.ofx-auth-subtitle {
  font-family: "Poppins", sans-serif !important;
  font-size: 0.9rem !important;
  color: #bdbdbd !important;
  text-align: center;
  margin-bottom: 28px !important;
  line-height: 1.5;
}

/* Input Fields */
.ofx-input-group {
  position: relative;
  margin-bottom: 24px;
}

.ofx-input-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #ff9f1c;
  font-size: 1.1rem;
  pointer-events: none;
  z-index: 5;
  transition: color 0.3s ease;
}

.ofx-auth-input {
  width: 100% !important;
  height: 58px !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 159, 28, 0.25) !important;
  color: #ffffff !important;
  padding-left: 52px !important;
  padding-right: 20px !important;
  font-size: 0.95rem !important;
  font-family: "Poppins", sans-serif !important;
  transition: all 0.3s ease !important;
  outline: none !important;
}

.ofx-auth-input::placeholder {
  color: rgba(255, 255, 255, 0.4) !important;
  font-size: 0.9rem !important;
}

.ofx-auth-input:focus {
  background: rgba(255, 255, 255, 0.07) !important;
  border-color: #ff9f1c !important;
  box-shadow: 0 0 18px rgba(255, 159, 28, 0.35) !important;
}

/* Action Buttons */
.ofx-auth-actions {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}

.ofx-btn-primary {
  flex: 1;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff9f1c 0%, #ffa726 100%) !important;
  color: #000000 !important;
  font-family: "Poppins", sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  letter-spacing: 0.3px;
  border: none !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(255, 159, 28, 0.25);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  text-decoration: none !important;
}

.ofx-btn-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(255, 159, 28, 0.45) !important;
  color: #000000 !important;
}

.ofx-btn-secondary {
  flex: 1;
  height: 52px;
  border-radius: 12px;
  background: transparent !important;
  border: 1px solid #ff9f1c !important;
  color: #ff9f1c !important;
  font-family: "Poppins", sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  text-decoration: none !important;
}

.ofx-btn-secondary:hover {
  background: rgba(255, 159, 28, 0.12) !important;
  color: #ff9f1c !important;
  transform: translateY(-2px) !important;
}

/* Alert Styling Overrides */
.alert-success {
  background: rgba(0, 230, 118, 0.12) !important;
  border: 1px solid rgba(0, 230, 118, 0.4) !important;
  color: #00e676 !important;
  border-radius: 12px !important;
  padding: 12px 18px !important;
  font-size: 0.88rem !important;
  font-family: "Poppins", sans-serif !important;
  margin-bottom: 20px !important;
}

.alert-danger,
.alert-error {
  background: rgba(255, 77, 79, 0.12) !important;
  border: 1px solid rgba(255, 77, 79, 0.4) !important;
  color: #ff4d4f !important;
  border-radius: 12px !important;
  padding: 12px 18px !important;
  font-size: 0.88rem !important;
  font-family: "Poppins", sans-serif !important;
  margin-bottom: 20px !important;
}

/* Responsive Styling */
@media (max-width: 576px) {
  .ofx-auth-card {
    padding: 30px 22px !important;
    border-radius: 20px !important;
  }
  .ofx-auth-actions {
    flex-direction: column !important;
    gap: 12px !important;
  }
  .ofx-auth-title {
    font-size: 1.5rem !important;
  }
  .ofx-auth-subtitle {
    font-size: 0.85rem !important;
  }
}

/* Password Eye Toggle & Strength Meter */
.ofx-eye-toggle {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.4);
  font-size: 1rem;
  cursor: pointer;
  z-index: 10;
  transition: color 0.3s ease;
}

.ofx-eye-toggle:hover {
  color: #ff9f1c;
}

.ofx-password-strength-wrap {
  margin-top: -6px;
  margin-bottom: 20px;
}

.ofx-strength-bar-bg {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 6px;
}

.ofx-strength-bar-fill {
  height: 100%;
  width: 0%;
  border-radius: 4px;
  transition: width 0.4s ease, background-color 0.4s ease;
}

.ofx-strength-text {
  font-size: 0.78rem;
  font-family: "Poppins", sans-serif;
  color: #bdbdbd;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ofx-strength-val {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

