/* ============================================================
   ELEGANT DARK-THEME SIGN-IN PAGE — BOOKS & MEMORIES
   ============================================================ */

:root {
  --auth-accent-gold: #f4d03f;
  --auth-accent-gold-dark: #d4af37;
  --auth-gradient-gold: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
  --auth-card-bg: #0d1726;
  --auth-left-bg: #09101c;
  --auth-border-color: rgba(244, 208, 63, 0.15);
}

.auth-page-wrapper {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background-color: #0c0b0e;
  background-image: 
    radial-gradient(circle at 50% 20%, rgba(244, 208, 63, 0.12) 0%, transparent 60%),
    linear-gradient(180deg, rgba(12, 11, 14, 0.88) 0%, rgba(16, 14, 18, 0.84) 40%, rgba(14, 12, 16, 0.88) 75%, rgba(10, 9, 12, 0.95) 100%),
    url('../../images/library_hero_ambient.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
  overflow-x: hidden;
  padding: 120px 20px 60px;
}

/* Ambient Glowing Background Orbs */
.auth-page-wrapper::before,
.auth-page-wrapper::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
  animation: ambientFloat 14s ease-in-out infinite alternate;
}

.auth-page-wrapper::before {
  width: 500px;
  height: 500px;
  top: 5%;
  left: 10%;
  background: radial-gradient(circle, rgba(244, 208, 63, 0.25) 0%, rgba(212, 175, 55, 0) 70%);
}

.auth-page-wrapper::after {
  width: 600px;
  height: 600px;
  bottom: 10%;
  right: 8%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, rgba(30, 58, 138, 0) 70%);
  animation-delay: -7s;
}

@keyframes ambientFloat {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.1); }
  100% { transform: translate(-30px, 40px) scale(0.95); }
}

#particleCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Central Auth Container Card with Smooth Reveal & Hover Elevation */
.payoneer-auth-card {
  position: relative;
  z-index: 2;
  display: flex;
  width: 1020px;
  max-width: 100%;
  margin: 0 auto;
  min-height: 580px;
  background-color: var(--auth-card-bg);
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.75), 0 0 0 1px var(--auth-border-color), 0 0 40px rgba(244, 208, 63, 0.05);
  overflow: hidden;
  animation: cardFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.payoneer-auth-card:hover {
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(244, 208, 63, 0.3), 0 0 50px rgba(244, 208, 63, 0.12);
}

@keyframes cardFadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Left Showcase Panel */
.left-hero-panel {
  flex: 1;
  background: var(--auth-left-bg);
  padding: 45px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.04);
}

.hero-top-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  letter-spacing: 0.2px;
  max-width: 360px;
}

.hero-headline {
  font-family: 'Merriweather', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-top: 15px;
  margin-bottom: 15px;
}

/* ── 2-Tier Editorial Wooden Shelf Showcase Banner (Full Width Open Display) ── */
.top-hero-banner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto 55px auto;
  background: transparent;
  border: none;
  padding: 50px 20px 30px;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.banner-header {
  text-align: center;
  max-width: 680px;
  margin-bottom: 70px;
}

.banner-headline {
  font-family: 'Merriweather', serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: #f4d03f;
  line-height: 1.3;
  margin-bottom: 10px;
}

.banner-subtext {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin-bottom: 18px;
}

.hero-action-btn-wrapper {
  margin-top: 5px;
}

.pill-story-btn {
  display: inline-block;
  background: #2c2119;
  color: #f4d03f;
  padding: 10px 26px;
  border-radius: 22px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(244, 208, 63, 0.25);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.pill-story-btn:hover {
  background: #3d2d22;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6), 0 0 15px rgba(244, 208, 63, 0.3);
}

.double-wooden-shelf-container {
  position: relative;
  width: 100%;
  padding: 20px 10px 10px;
}

/* Wall projection shadow behind shelves */
.shelf-wall-shadow {
  position: absolute;
  top: 10%;
  left: 0;
  width: 50px;
  height: 80%;
  background: linear-gradient(90deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 100%);
  filter: blur(8px);
  pointer-events: none;
}

.shelf-tier {
  position: relative;
  width: 100%;
}

.books-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  padding: 0 15px;
  position: relative;
  z-index: 2;
}

/* Book Spines with Rich Warm 3D Leather & Cloth Finishes */
.shelf-spine {
  width: 18px;
  border-radius: 3px 3px 1px 1px;
  box-shadow: -3px 3px 8px rgba(0, 0, 0, 0.75), 
              inset 1px 0 2px rgba(255, 255, 255, 0.35),
              inset -1px 0 3px rgba(0, 0, 0, 0.4);
  position: relative;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.25s ease;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-50px) scale(0.9);
  animation: spinePlaceIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: var(--spine-delay, 0s);
}

@keyframes spinePlaceIn {
  0% {
    opacity: 0;
    transform: translateY(-60px) rotate(-6deg) scale(0.85);
  }
  70% {
    opacity: 1;
    transform: translateY(4px) rotate(1deg) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotate(0deg) scale(1);
  }
}

/* Spine embossed ridges (realistic book binding texture) */
.shelf-spine::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 16px 0 rgba(255, 255, 255, 0.25), 
              0 32px 0 rgba(0, 0, 0, 0.3),
              0 (100% - 24px) 0 rgba(255, 255, 255, 0.2);
}

/* Spine gold accent line */
.shelf-spine::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 3px;
  right: 3px;
  height: 2px;
  background: rgba(244, 208, 63, 0.7);
  box-shadow: 0 (100% - 12px) 0 rgba(244, 208, 63, 0.7);
}

.shelf-spine:hover {
  transform: translateY(-10px) scale(1.06);
  box-shadow: -6px 14px 22px rgba(0, 0, 0, 0.9), 0 0 15px rgba(244, 208, 63, 0.5);
  z-index: 20;
}

.spine-red { background: linear-gradient(180deg, #c04838 0%, #852517 100%); }
.spine-orange { background: linear-gradient(180deg, #d97828 0%, #a04f12 100%); }
.spine-yellow { background: linear-gradient(180deg, #e0a736 0%, #b57d19 100%); }
.spine-teal { background: linear-gradient(180deg, #3f8080 0%, #204c4c 100%); }
.spine-blue { background: linear-gradient(180deg, #326080 0%, #17384f 100%); }
.spine-gold { background: linear-gradient(180deg, #cb9a36 0%, #996e16 100%); }
.spine-rust { background: linear-gradient(180deg, #a0422c 0%, #6e2514 100%); }
.spine-green { background: linear-gradient(180deg, #4d7a54 0%, #2d5233 100%); }

/* Spine Vertical Title Styling (Neat & Contained Fit) */
.spine-title {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: 'Inter', sans-serif;
  font-size: 0.44rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: rgba(255, 255, 255, 0.85);
  position: absolute;
  top: 14px;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: calc(100% - 22px);
  pointer-events: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.9);
  opacity: 0.85;
  display: inline-block;
  text-align: center;
}

.shelf-spine:hover .spine-title {
  color: #f4d03f;
  opacity: 1;
}

/* 3D Wooden Plank Shelf */
.wooden-plank {
  width: 100%;
  height: 14px;
  background: linear-gradient(180deg, #5c3e29 0%, #352113 100%);
  border-radius: 2px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.85), inset 0 1px 2px rgba(255, 255, 255, 0.3);
  margin-top: -2px;
  position: relative;
  z-index: 1;
}

.wooden-plank::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 0;
  width: 100%;
  height: 4px;
  background: #7a5439;
  border-radius: 2px 2px 0 0;
}

/* Thought Bubble Cloud Tags (Clean Center Transformation Fix) */
.bubble-tag {
  position: absolute;
  background: #ffffff;
  color: #231b15;
  padding: 6px 14px;
  border-radius: 18px;
  font-family: 'Inter', sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4);
  z-index: 25;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: auto;
}

.bubble-top {
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%) scale(1);
  transform-origin: center bottom;
}

.bubble-top:hover {
  transform: translateX(-50%) scale(1.12);
}

.bubble-bottom {
  top: 125%;
  left: 50%;
  transform: translateX(-50%) scale(1);
  transform-origin: center top;
}

.bubble-bottom:hover {
  transform: translateX(-50%) scale(1.12);
}

.bubble-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.bubble-top .bubble-dots {
  top: 100%;
  margin-top: 3px;
}

.bubble-bottom .bubble-dots {
  bottom: 100%;
  margin-bottom: 3px;
  flex-direction: column-reverse;
}

.bubble-dots span {
  display: block;
  background: #ffffff;
  border-radius: 50%;
}

.bubble-dots span:nth-child(1) {
  width: 6px;
  height: 6px;
}

.bubble-dots span:nth-child(2) {
  width: 4px;
  height: 4px;
}

/* Circular 3D Curved Arc Carousel (Seamless Infinite Loop) */
.circular-carousel-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  margin-top: 15px;
  overflow: hidden;
  perspective: 1000px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

/* Fade gradients on left & right edges of carousel */
.circular-carousel-wrapper::before,
.circular-carousel-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50px;
  z-index: 5;
  pointer-events: none;
}

.circular-carousel-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, var(--auth-left-bg) 0%, transparent 100%);
}

.circular-carousel-wrapper::after {
  right: 0;
  background: linear-gradient(-90deg, var(--auth-left-bg) 0%, transparent 100%);
}

.carousel-3d-track {
  display: flex;
  gap: 18px;
  align-items: center;
  animation: infiniteScroll 18s linear infinite;
  padding: 20px 0;
  width: max-content;
}

.circular-carousel-wrapper:hover .carousel-3d-track {
  animation-play-state: paused;
}

.carousel-card {
  width: 135px;
  height: 200px;
  flex-shrink: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 15px rgba(244, 208, 63, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  background: #15110e;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.carousel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-card:hover {
  transform: translateY(-10px) scale(1.08) !important;
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.9), 0 0 25px rgba(244, 208, 63, 0.35);
  z-index: 10;
}

@keyframes infiniteScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-135px * 8 - 18px * 8));
  }
}

/* Right Form Panel (Sleek Dark Luxe Theme) */
.right-form-panel {
  flex: 1.1;
  background: var(--auth-card-bg);
  padding: 45px 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #ffffff;
}

/* Form Top Navigation Bar */
.form-header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-symbol {
  color: var(--auth-accent-gold);
  font-size: 1.3rem;
  filter: drop-shadow(0 0 8px rgba(244, 208, 63, 0.4));
}

.nav-welcome-text {
  font-family: 'Merriweather', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.5px;
}

.nav-switch-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--auth-accent-gold);
  cursor: pointer;
  padding: 7px 18px;
  border-radius: 20px;
  transition: all 0.25 ease;
}

.nav-switch-btn:hover {
  background: rgba(244, 208, 63, 0.15);
  border-color: var(--auth-accent-gold);
}

/* Form Body */
.form-body {
  margin: 25px 0;
  position: relative;
}

.form-view {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.form-view.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.auth-title {
  font-family: 'Merriweather', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.auth-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 28px;
}

/* Dark Floating Pill Input Groups */
.floating-input-group {
  position: relative;
  margin-bottom: 20px;
  width: 100%;
}

.floating-input-group input {
  width: 100%;
  height: 52px;
  padding: 16px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  outline: none;
  transition: border-color 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease, background-color 0.3s ease, transform 0.25s ease;
}

.floating-input-group input:focus {
  border-color: var(--auth-accent-gold);
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(244, 208, 63, 0.18), 0 8px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-1px);
}

.floating-input-group label {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Floating Label behavior for Dark Input */
.floating-input-group input:focus~label,
.floating-input-group input:not(:placeholder-shown)~label {
  top: 0px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--auth-accent-gold);
  background-color: var(--auth-card-bg);
  padding: 0 6px;
  transform: translateY(-50%);
}

.auth-alert {
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  margin-bottom: 18px;
  line-height: 1.4;
  animation: fadeIn 0.3s ease;
}

.auth-alert.success {
  background: rgba(46, 204, 113, 0.15);
  border: 1px solid rgba(46, 204, 113, 0.4);
  color: #2ecc71;
}

.auth-alert.error {
  background: rgba(231, 76, 60, 0.15);
  border: 1px solid rgba(231, 76, 60, 0.4);
  color: #e74c3c;
}

.toggle-password-btn {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.1rem;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

.toggle-password-btn:hover {
  color: var(--auth-accent-gold);
  transform: translateY(-50%) scale(1.15);
}

.forgot-link-wrapper {
  text-align: left;
  margin-bottom: 22px;
  margin-left: 10px;
}

.forgot-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--auth-accent-gold);
  text-decoration: none;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.forgot-link:hover {
  color: #ffe993;
  text-shadow: 0 0 8px rgba(244, 208, 63, 0.4);
}

/* Primary Auth Submit Button with Animated Gold Sheen */
.auth-submit-btn {
  width: 100%;
  height: 52px;
  background: var(--auth-gradient-gold);
  color: #0e1726;
  border: none;
  border-radius: 26px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(244, 208, 63, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Shimmer Highlight Effect on Button */
.auth-submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-25deg);
  transition: left 0.75s ease;
}

.auth-submit-btn:hover::before {
  left: 150%;
}

.auth-submit-btn:hover {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 15px 35px rgba(244, 208, 63, 0.5), 0 0 20px rgba(244, 208, 63, 0.3);
}

.auth-submit-btn:active {
  transform: translateY(-1px) scale(0.99);
}

.auth-success-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(46, 204, 113, 0.12);
  border: 1px solid rgba(46, 204, 113, 0.3);
  color: #2ecc71;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.88rem;
  margin-bottom: 20px;
}

/* Golden Pill Submit Button */
.pill-submit-btn {
  width: 100%;
  height: 52px;
  background: var(--auth-gradient-gold);
  border: none;
  border-radius: 26px;
  color: #120f0e;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(244, 208, 63, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pill-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(244, 208, 63, 0.38);
}

.pill-submit-btn:active {
  transform: translateY(0);
}

/* Form Footer */
.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
}

.footer-links {
  display: flex;
  gap: 15px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--auth-accent-gold);
}

/* Mobile Responsive */
@media (max-width: 900px) {
  .payoneer-auth-card {
    flex-direction: column;
    min-height: auto;
    border-radius: 20px;
  }

  .left-hero-panel {
    padding: 35px 30px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .hero-headline {
    font-size: 2.2rem;
  }

  .right-form-panel {
    padding: 35px 30px;
  }
}

animation: btnSpin 0.75s infinite linear;
}

@keyframes btnSpin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Form Footer */
.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
}

.footer-links {
  display: flex;
  gap: 15px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--auth-accent-gold);
}

/* Mobile Responsive */
@media (max-width: 900px) {
  .payoneer-auth-card {
    flex-direction: column;
    min-height: auto;
    border-radius: 20px;
  }

  .left-hero-panel {
    padding: 35px 30px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .hero-headline {
    font-size: 2.2rem;
  }

  .right-form-panel {
    padding: 35px 30px;
  }
}