 /* ═══════════════════════════════════════
       RESET & BASE
    ═══════════════════════════════════════ */
 *,
 *::before,
 *::after {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }

 :root {
     --primary: #2563EB;
     --secondary: #7C3AED;
     --success: #10B981;
     --danger: #EF4444;
     --warning: #F59E0B;
     --text: #0F172A;
     --muted: #64748B;
     --border: rgba(255, 255, 255, 0.2);
     --card-bg: rgba(255, 255, 255, 0.93);
     --r-md: 12px;
     --r-lg: 16px;
     --r-xl: 20px;
     --r-2xl: 24px;
 }

 html,
 body {
     font-family: 'Inter', -apple-system, sans-serif;
     min-height: 100vh;
     overflow-x: hidden;
     -webkit-font-smoothing: antialiased;
 }

 /* ═══════════════════════════════════════
       BACKGROUND — DEEP DARK CRYPTO
    ═══════════════════════════════════════ */
 body {
     background: #060d1f;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: flex-start;
     min-height: 100vh;
     padding-top: 56px;
     /* for fixed ticker */
     padding-bottom: 40px;
     position: relative;
 }

 /* Deep gradient atmosphere */
 body::before {
     content: '';
     position: fixed;
     inset: 0;
     background:
         radial-gradient(ellipse 80% 60% at 20% 10%, rgba(37, 99, 235, 0.22) 0%, transparent 60%),
         radial-gradient(ellipse 60% 50% at 80% 80%, rgba(124, 58, 237, 0.18) 0%, transparent 60%),
         radial-gradient(ellipse 50% 40% at 50% 50%, rgba(16, 185, 129, 0.06) 0%, transparent 70%),
         linear-gradient(160deg, #060d1f 0%, #0a1628 40%, #0d0f1e 100%);
     z-index: 0;
 }

 /* Grid lines overlay */
 body::after {
     /*content: '';*/
     position: fixed;
     inset: 0;
     background-image:
         linear-gradient(rgba(37, 99, 235, 0.05) 1px, transparent 1px),
         linear-gradient(90deg, rgba(37, 99, 235, 0.05) 1px, transparent 1px);
     background-size: 44px 44px;
     z-index: 0;
 }

 /* ═══════════════════════════════════════
       TICKER BAR  (fixed top)
    ═══════════════════════════════════════ */
 .auth-ticker {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 44px;
     background: rgba(6, 13, 31, 0.92);
     backdrop-filter: blur(12px);
     border-bottom: 1px solid rgba(37, 99, 235, 0.2);
     display: flex;
     align-items: center;
     overflow: hidden;
     z-index: 200;
 }

 .ticker-label {
     flex-shrink: 0;
     padding: 0 16px;
     font-size: 9px;
     font-weight: 800;
     letter-spacing: 1.5px;
     text-transform: uppercase;
     color: var(--primary);
     border-right: 1px solid rgba(37, 99, 235, 0.2);
     height: 100%;
     display: flex;
     align-items: center;
     background: rgba(37, 99, 235, 0.06);
 }

 .ticker-dot {
     width: 5px;
     height: 5px;
     border-radius: 50%;
     background: #10B981;
     margin-right: 8px;
     animation: pulse-dot 1.5s ease-in-out infinite;
 }

 @keyframes pulse-dot {

     0%,
     100% {
         opacity: 1;
         transform: scale(1)
     }

     50% {
         opacity: .5;
         transform: scale(1.4)
     }
 }

 .ticker-scroll {
     display: flex;
     white-space: nowrap;
     animation: ticker-move 32s linear infinite;
 }

 .ticker-item {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     padding: 0 28px;
     font-size: 11px;
     font-weight: 700;
     color: rgba(255, 255, 255, 0.75);
     border-right: 1px solid rgba(255, 255, 255, 0.06);
 }

 .ticker-item .sym {
     color: #fff;
     font-weight: 800;
 }

 .ticker-item .up {
     color: #10B981;
 }

 .ticker-item .dn {
     color: #EF4444;
 }

 @keyframes ticker-move {
     0% {
         transform: translateX(0)
     }

     100% {
         transform: translateX(-50%)
     }
 }

 /* ═══════════════════════════════════════
       FLOATING CRYPTO COINS — FULL ANIMATION
    ═══════════════════════════════════════ */
 .coins-bg {
     position: fixed;
     inset: 0;
     pointer-events: none;
     z-index: 1;
     overflow: hidden;
 }

 .coin {
     position: absolute;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 900;
     animation: coin-float linear infinite;
     opacity: 0;
     animation-timing-function: ease-in-out;
 }

 /* Individual coin positions & animations */
 .coin-btc {
     width: 72px;
     height: 72px;
     font-size: 36px;
     background: radial-gradient(circle, rgba(247, 147, 26, 0.18) 0%, transparent 70%);
     color: #F7931A;
     top: 8%;
     left: 5%;
     animation: float-1 10s ease-in-out infinite;
     filter: drop-shadow(0 0 24px rgba(247, 147, 26, 0.5));
     opacity: 0.85;
 }

 .coin-eth {
     width: 60px;
     height: 60px;
     font-size: 28px;
     background: radial-gradient(circle, rgba(98, 126, 234, 0.18) 0%, transparent 70%);
     color: #627EEA;
     bottom: 12%;
     right: 6%;
     animation: float-2 12s ease-in-out infinite;
     filter: drop-shadow(0 0 20px rgba(98, 126, 234, 0.5));
     opacity: 0.8;
 }

 .coin-bnb {
     width: 52px;
     height: 52px;
     font-size: 24px;
     background: radial-gradient(circle, rgba(243, 186, 47, 0.15) 0%, transparent 70%);
     color: #F3BA2F;
     top: 30%;
     right: 3%;
     animation: float-3 8s ease-in-out infinite;
     filter: drop-shadow(0 0 18px rgba(243, 186, 47, 0.45));
     opacity: 0.75;
 }

 .coin-sol {
     width: 48px;
     height: 48px;
     font-size: 22px;
     background: radial-gradient(circle, rgba(20, 241, 149, 0.15) 0%, transparent 70%);
     color: #14F195;
     bottom: 30%;
     left: 3%;
     animation: float-4 11s ease-in-out infinite;
     filter: drop-shadow(0 0 16px rgba(20, 241, 149, 0.4));
     opacity: 0.7;
 }

 .coin-xrp {
     width: 44px;
     height: 44px;
     font-size: 20px;
     background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
     color: #3b82f6;
     top: 60%;
     left: 7%;
     animation: float-5 9s ease-in-out infinite;
     filter: drop-shadow(0 0 14px rgba(37, 99, 235, 0.4));
     opacity: 0.7;
 }

 .coin-btc2 {
     width: 38px;
     height: 38px;
     font-size: 17px;
     color: rgba(247, 147, 26, 0.4);
     top: 75%;
     right: 8%;
     animation: float-1 13s ease-in-out infinite 2s;
     opacity: 0.5;
 }

 .coin-eth2 {
     width: 34px;
     height: 34px;
     font-size: 15px;
     color: rgba(98, 126, 234, 0.4);
     top: 15%;
     right: 12%;
     animation: float-2 9s ease-in-out infinite 1s;
     opacity: 0.45;
 }

 .coin-dot {
     width: 28px;
     height: 28px;
     font-size: 13px;
     color: rgba(255, 255, 255, 0.25);
     top: 45%;
     right: 12%;
     animation: float-3 7s ease-in-out infinite 3s;
     opacity: 0.4;
 }

 /* Floating keyframes — different directions */
 @keyframes float-1 {

     0%,
     100% {
         transform: translateY(0px) rotate(0deg);
     }

     25% {
         transform: translateY(-22px) rotate(8deg);
     }

     50% {
         transform: translateY(-12px) rotate(-4deg) translateX(10px);
     }

     75% {
         transform: translateY(-30px) rotate(6deg) translateX(-8px);
     }
 }

 @keyframes float-2 {

     0%,
     100% {
         transform: translateY(0px) rotate(0deg);
     }

     33% {
         transform: translateY(-18px) rotate(-6deg) translateX(-12px);
     }

     66% {
         transform: translateY(-28px) rotate(10deg) translateX(8px);
     }
 }

 @keyframes float-3 {

     0%,
     100% {
         transform: translateY(0) scale(1);
     }

     50% {
         transform: translateY(-20px) scale(1.08) rotate(12deg);
     }
 }

 @keyframes float-4 {

     0%,
     100% {
         transform: translateX(0) translateY(0);
     }

     40% {
         transform: translateX(15px) translateY(-18px);
     }

     80% {
         transform: translateX(-8px) translateY(-26px);
     }
 }

 @keyframes float-5 {

     0%,
     100% {
         transform: translateY(0) rotate(0);
     }

     60% {
         transform: translateY(-24px) rotate(-15deg);
     }
 }

 /* Glow orbs behind */
 .glow-orb {
     position: fixed;
     border-radius: 50%;
     pointer-events: none;
     z-index: 0;
     filter: blur(80px);
 }

 .orb-1 {
     width: 400px;
     height: 400px;
     background: rgba(37, 99, 235, 0.12);
     top: -150px;
     left: -100px;
     animation: orb-drift 18s ease-in-out infinite;
 }

 .orb-2 {
     width: 350px;
     height: 350px;
     background: rgba(124, 58, 237, 0.1);
     bottom: -100px;
     right: -80px;
     animation: orb-drift 14s ease-in-out infinite reverse;
 }

 .orb-3 {
     width: 200px;
     height: 200px;
     background: rgba(16, 185, 129, 0.07);
     top: 40%;
     left: 50%;
     animation: orb-drift 10s ease-in-out infinite 3s;
 }

 @keyframes orb-drift {

     0%,
     100% {
         transform: translate(0, 0);
     }

     50% {
         transform: translate(30px, 20px);
     }
 }

 /* ═══════════════════════════════════════
       ORBIT RING (decorative)
    ═══════════════════════════════════════ */
 .orbit-ring {
     position: fixed;
     z-index: 1;
     pointer-events: none;
     border-radius: 50%;
     border: 1px solid rgba(37, 99, 235, 0.12);
 }

 .orbit-ring-1 {
     width: 600px;
     height: 600px;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     animation: orbit-spin 40s linear infinite;
 }

 .orbit-ring-2 {
     width: 400px;
     height: 400px;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     border-color: rgba(124, 58, 237, 0.1);
     animation: orbit-spin 28s linear infinite reverse;
 }

 @keyframes orbit-spin {
     to {
         transform: translate(-50%, -50%) rotate(360deg);
     }
 }

 /* ═══════════════════════════════════════
       PAGE WRAPPER
    ═══════════════════════════════════════ */
 .auth-wrap {
     position: relative;
     z-index: 10;
     width: 100%;
     display: flex;
     justify-content: center;
     padding: 24px 16px;
 }

 /* ═══════════════════════════════════════
       GLASS AUTH CARD
    ═══════════════════════════════════════ */
 .auth-card {
     width: 100%;
     max-width: 480px;
     background: var(--card-bg);
     backdrop-filter: blur(24px) saturate(180%);
     -webkit-backdrop-filter: blur(24px) saturate(180%);
     border: 1px solid rgba(255, 255, 255, 0.5);
     border-radius: var(--r-2xl);
     padding: 2.5rem 2rem;
     position: relative;
     box-shadow:
         0 0 0 1px rgba(37, 99, 235, 0.1),
         0 20px 60px rgba(0, 0, 0, 0.35),
         0 0 100px rgba(37, 99, 235, 0.05);
     overflow: hidden;
     animation: card-in 0.6s cubic-bezier(.22, 1, .36, 1) both;
 }

 @keyframes card-in {
     from {
         opacity: 0;
         transform: translateY(24px) scale(.98);
     }

     to {
         opacity: 1;
         transform: translateY(0) scale(1);
     }
 }

 .auth-card.wide {
     max-width: 560px;
 }

 .auth-card.full-wide {
     max-width: 620px;
 }

 /* Top gradient bar */
 .auth-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 3px;
     background: linear-gradient(90deg, var(--primary), var(--secondary), #10B981);
 }

 /* Shimmer line */
 .auth-card::after {
     content: '';
     position: absolute;
     top: 0;
     left: -120%;
     width: 60%;
     height: 3px;
     background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
     animation: card-shimmer 3.5s ease-in-out infinite 1s;
 }

 @keyframes card-shimmer {
     0% {
         left: -120%
     }

     100% {
         left: 120%
     }
 }

 /* ═══════════════════════════════════════
       LOGO BLOCK
    ═══════════════════════════════════════ */
 .logo-block {
     display: flex;
     flex-direction: column;
     align-items: center;
     text-align: center;
     margin-bottom: 2rem;
 }

 .logo-img-wrap {
     width: 76px;
     height: 76px;
     border-radius: 22px;
     background: linear-gradient(135deg, #fff 0%, #f1f5f9 100%);
     border: 2px solid rgba(37, 99, 235, 0.15);
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 1.1rem;
     box-shadow: 0 8px 24px rgba(37, 99, 235, 0.18), 0 0 0 4px rgba(37, 99, 235, 0.07);
     animation: logo-pulse 3s ease-in-out infinite;
     position: relative;
     overflow: hidden;
 }

 @keyframes logo-pulse {

     0%,
     100% {
         box-shadow: 0 8px 24px rgba(37, 99, 235, 0.18), 0 0 0 4px rgba(37, 99, 235, 0.07);
     }

     50% {
         box-shadow: 0 8px 32px rgba(124, 58, 237, 0.22), 0 0 0 6px rgba(124, 58, 237, 0.1);
     }
 }

 .logo-img-wrap img {
     width: 52px;
     height: 52px;
     object-fit: contain;
     position: relative;
     z-index: 1;
 }

 .logo-brand-name {
     font-size: 1.45rem;
     font-weight: 900;
     color: var(--text);
     letter-spacing: -0.03em;
     line-height: 1.2;
 }

 .logo-tagline {
     font-size: 0.82rem;
     font-weight: 500;
     color: var(--muted);
     margin-top: 0.4rem;
 }

 /* ═══════════════════════════════════════
       FORM ELEMENTS
    ═══════════════════════════════════════ */
 .form-group {
     margin-bottom: 1.25rem;
 }

 .form-label {
     display: block;
     font-size: 0.72rem;
     font-weight: 700;
     color: var(--muted);
     text-transform: uppercase;
     letter-spacing: 0.06em;
     margin-bottom: 0.5rem;
 }

 .label-row {
     display: flex;
     align-items: center;
     justify-content: space-between;
     margin-bottom: 0.5rem;
 }

 .label-row .form-label {
     margin-bottom: 0;
 }

 .label-link {
     font-size: 0.72rem;
     font-weight: 700;
     color: var(--primary);
     text-decoration: none;
     letter-spacing: 0.04em;
     transition: color 0.2s;
 }

 .label-link:hover {
     color: var(--secondary);
 }

 .input-wrap {
     position: relative;
 }

 .input-icon {
     position: absolute;
     left: 15px;
     top: 50%;
     transform: translateY(-50%);
     width: 17px;
     height: 17px;
     color: #94a3b8;
     pointer-events: none;
     transition: color 0.22s;
 }

 .form-group:focus-within .input-icon {
     color: var(--primary);
 }

 .form-input {
     width: 100%;
     height: 52px;
     padding: 0 16px 0 46px;
     background: #f8fafc;
     border: 1.5px solid #e2e8f0;
     border-radius: var(--r-md);
     color: var(--text);
     font-family: 'Inter', sans-serif;
     font-size: 0.92rem;
     font-weight: 500;
     outline: none;
     transition: all 0.25s ease;
     -webkit-appearance: none;
 }

 .form-input::placeholder {
     color: #94a3b8;
     font-weight: 400;
 }

 .form-input:focus {
     border-color: var(--primary);
     background: #fff;
     box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
 }

 .form-input[readonly] {
     color: var(--success);
     font-weight: 700;
     cursor: not-allowed;
     background: rgba(16, 185, 129, 0.04);
 }

 /* Phone row */
 .phone-row {
     display: flex;
     gap: 10px;
 }

 .phone-row .select-wrap {
     width: 138px;
     flex-shrink: 0;
 }

 .phone-row .input-wrap {
     flex: 1;
 }

 .select-wrap {
     position: relative;
 }

 .form-select {
     width: 100%;
     height: 52px;
     padding: 0 32px 0 40px;
     background: #f8fafc;
     border: 1.5px solid #e2e8f0;
     border-radius: var(--r-md);
     color: var(--text);
     font-family: 'Inter', sans-serif;
     font-size: 0.82rem;
     font-weight: 600;
     outline: none;
     cursor: pointer;
     appearance: none;
     transition: all 0.25s;
 }

 .form-select:focus {
     border-color: var(--primary);
     box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
 }

 .select-icon {
     position: absolute;
     left: 12px;
     top: 50%;
     transform: translateY(-50%);
     pointer-events: none;
     color: #94a3b8;
 }

 .select-caret {
     position: absolute;
     right: 10px;
     top: 50%;
     transform: translateY(-50%);
     pointer-events: none;
     color: #94a3b8;
 }

 /* Section divider */
 .section-divider {
     display: flex;
     align-items: center;
     gap: 12px;
     margin: 1.5rem 0;
 }

 .section-divider span {
     flex: 1;
     height: 1px;
     background: #e2e8f0;
 }

 .section-divider p {
     font-size: 0.68rem;
     font-weight: 700;
     color: var(--muted);
     text-transform: uppercase;
     letter-spacing: 0.08em;
 }

 /* ═══════════════════════════════════════
       BUTTON
    ═══════════════════════════════════════ */
 .btn-primary {
     width: 100%;
     height: 54px;
     background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
     background-size: 200% 200%;
     border: none;
     border-radius: var(--r-md);
     color: #fff;
     font-family: 'Inter', sans-serif;
     font-size: 0.95rem;
     font-weight: 700;
     letter-spacing: 0.01em;
     cursor: pointer;
     transition: all 0.3s ease;
     box-shadow: 0 8px 20px rgba(124, 58, 237, 0.35);
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
     margin-top: 1.5rem;
     text-decoration: none;
     position: relative;
     overflow: hidden;
 }

 .btn-primary::after {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 70%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
     transition: left 0.5s ease;
 }

 .btn-primary:hover {
     transform: translateY(-2px);
     box-shadow: 0 14px 28px rgba(124, 58, 237, 0.45);
     background-position: right;
 }

 .btn-primary:hover::after {
     left: 130%;
 }

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

 /* ═══════════════════════════════════════
       ALERTS & INFO
    ═══════════════════════════════════════ */
 .alert {
     display: flex;
     align-items: center;
     gap: 10px;
     padding: 12px 16px;
     border-radius: var(--r-md);
     font-size: 0.83rem;
     font-weight: 500;
     margin-bottom: 1.5rem;
     animation: alert-in 0.3s ease both;
 }

 @keyframes alert-in {
     from {
         opacity: 0;
         transform: translateY(-6px)
     }

     to {
         opacity: 1;
         transform: translateY(0)
     }
 }

 .alert-error {
     background: rgba(239, 68, 68, 0.09);
     border: 1px solid rgba(239, 68, 68, 0.22);
     color: #dc2626;
 }

 .alert-success {
     background: rgba(16, 185, 129, 0.09);
     border: 1px solid rgba(16, 185, 129, 0.22);
     color: #059669;
 }

 .info-badge {
     display: flex;
     align-items: flex-start;
     gap: 10px;
     background: rgba(37, 99, 235, 0.07);
     border: 1px solid rgba(37, 99, 235, 0.18);
     border-radius: var(--r-md);
     padding: 12px 14px;
     font-size: 0.76rem;
     color: #3b82f6;
     font-weight: 500;
     line-height: 1.5;
     margin-top: 1rem;
 }

 .info-badge svg {
     flex-shrink: 0;
     width: 15px;
     height: 15px;
     margin-top: 1px;
 }

 /* Sponsor verify states */
 .sponsor-verified {
     color: var(--success) !important;
     border-color: var(--success) !important;
     background: rgba(16, 185, 129, 0.06) !important;
 }

 .sponsor-invalid {
     color: var(--danger) !important;
     border-color: var(--danger) !important;
     background: rgba(239, 68, 68, 0.06) !important;
 }

 /* ═══════════════════════════════════════
       AUTH FOOTER
    ═══════════════════════════════════════ */
 .auth-footer {
     text-align: center;
     margin-top: 1.75rem;
     font-size: 0.875rem;
     color: var(--muted);
 }

 .auth-footer a {
     color: var(--primary);
     font-weight: 700;
     text-decoration: none;
     transition: color 0.2s;
 }

 .auth-footer a:hover {
     color: var(--secondary);
 }

 /* ═══════════════════════════════════════
       THANK YOU PAGE
    ═══════════════════════════════════════ */
 .ty-icon-wrap {
     width: 92px;
     height: 92px;
     border-radius: 24px;
     background: linear-gradient(135deg, rgba(37, 99, 235, 0.12) 0%, rgba(124, 58, 237, 0.1) 100%);
     border: 2px solid rgba(37, 99, 235, 0.2);
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 1.5rem;
     box-shadow: 0 0 40px rgba(37, 99, 235, 0.15);
     position: relative;
     animation: ty-pulse 3s ease-in-out infinite;
 }

 @keyframes ty-pulse {

     0%,
     100% {
         box-shadow: 0 0 40px rgba(37, 99, 235, 0.15);
     }

     50% {
         box-shadow: 0 0 60px rgba(124, 58, 237, 0.22);
     }
 }

 .ty-icon-wrap img {
     width: 62px;
     height: 62px;
     object-fit: contain;
 }

 .ty-check-badge {
     position: absolute;
     bottom: -9px;
     right: -9px;
     width: 30px;
     height: 30px;
     background: linear-gradient(135deg, var(--success), #059669);
     border-radius: 50%;
     border: 3px solid #fff;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 4px 10px rgba(16, 185, 129, 0.4);
     animation: check-bounce 2.2s ease-in-out infinite;
 }

 @keyframes check-bounce {

     0%,
     100% {
         transform: scale(1);
     }

     50% {
         transform: scale(1.2);
     }
 }

 .cred-box {
     background: #f8fafc;
     border: 1.5px solid #e2e8f0;
     border-radius: var(--r-lg);
     padding: 14px 16px;
     margin-bottom: 10px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     transition: all 0.22s;
 }

 .cred-box:hover {
     background: rgba(37, 99, 235, 0.04);
     border-color: rgba(37, 99, 235, 0.2);
 }

 .cred-label {
     font-size: 0.66rem;
     font-weight: 800;
     text-transform: uppercase;
     letter-spacing: 0.1em;
     color: var(--muted);
     margin-bottom: 5px;
 }

 .cred-value {
     font-size: 1.35rem;
     font-weight: 900;
     color: var(--primary);
     letter-spacing: -0.01em;
 }

 .cred-value.pass {
     font-size: 0.95rem;
     font-weight: 700;
     color: var(--text);
     letter-spacing: 0.06em;
 }

 .copy-btn {
     width: 36px;
     height: 36px;
     background: #fff;
     border: 1.5px solid #e2e8f0;
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     color: var(--muted);
     transition: all 0.22s;
     flex-shrink: 0;
 }

 .copy-btn:hover {
     background: rgba(37, 99, 235, 0.08);
     border-color: var(--primary);
     color: var(--primary);
 }

 .copy-btn svg {
     width: 15px;
     height: 15px;
 }

 /* ═══════════════════════════════════════
       FORM GRID (2-col)
    ═══════════════════════════════════════ */
 .form-grid-2 {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 0 14px;
 }

 .form-grid-2 .span-2 {
     grid-column: 1 / -1;
 }

 @media (max-width: 480px) {
     .form-grid-2 {
         grid-template-columns: 1fr;
     }

     .auth-card {
         padding: 2rem 1.25rem;
     }

     .phone-row {
         flex-direction: column;
     }

     .phone-row .select-wrap {
         width: 100%;
     }
 }

 /* ═══════════════════════════════════════
       SPIN ANIMATION (btn loading)
    ═══════════════════════════════════════ */
 @keyframes spin {
     to {
         transform: rotate(360deg);
     }
 }
 /* ═══════════════════════════════════════
   ZYPRHOFX — TRADING LOGIN THEME
   HTML + CSS + Bootstrap 5 + PHP
   Palette: Deep navy / Blue / Emerald / Gold
   ═══════════════════════════════════════ */

:root {
    --primary: #2D6BE6;
    --secondary: #10B981;
    --gold: #F5B642;
    --gold-deep: #E09A1F;
    --danger: #EF4444;
    --success: #10B981;
    --text: #0F172A;
    --muted: #64748B;
    --card-bg: rgba(255, 255, 255, 0.93);
    --r-md: 12px;
    --r-lg: 16px;
    --r-xl: 20px;
    --r-2xl: 24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body {
    background: #060d1f;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    padding-top: 56px;
    padding-bottom: 40px;
    position: relative;
}

/* Deep gradient atmosphere */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 18% 8%, rgba(45, 107, 230, 0.22) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 82% 82%, rgba(245, 182, 66, 0.16) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 50% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 70%),
        linear-gradient(160deg, #060d1f 0%, #0a1628 40%, #0d0f1e 100%);
    z-index: 0;
}

/* Grid lines overlay */
body::after {
    /*content: '';*/
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(45, 107, 230, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(45, 107, 230, 0.05) 1px, transparent 1px);
    background-size: 44px 44px;
    -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, #000 30%, transparent 80%);
    mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, #000 30%, transparent 80%);
    z-index: 0;
}

/* ═══ TICKER BAR ═══ */
.auth-ticker {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 44px;
    background: rgba(6, 13, 31, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(45, 107, 230, 0.2);
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 200;
}

.ticker-label {
    flex-shrink: 0;
    padding: 0 16px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary);
    border-right: 1px solid rgba(45, 107, 230, 0.2);
    height: 100%;
    display: flex;
    align-items: center;
    background: rgba(45, 107, 230, 0.06);
}

.ticker-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: #10B981;
    margin-right: 8px;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(1.4); }
}

.ticker-viewport { overflow: hidden; flex: 1; }

.ticker-scroll {
    display: flex;
    white-space: nowrap;
    animation: ticker-move 34s linear infinite;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 28px;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.ticker-item .sym { color: #fff; font-weight: 800; }
.ticker-item .up { color: #10B981; }
.ticker-item .dn { color: #EF4444; }

@keyframes ticker-move {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ═══ FLOATING COINS ═══ */
.coins-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.coin {
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.coin-btc  { top: 8%;  left: 5%;  animation: float-1 10s ease-in-out infinite; filter: drop-shadow(0 0 24px rgba(247,147,26,.5)); }
.coin-eth  { bottom: 12%; right: 6%; animation: float-2 12s ease-in-out infinite; filter: drop-shadow(0 0 20px rgba(98,126,234,.5)); }
.coin-bnb  { top: 30%; right: 3%; animation: float-3 8s ease-in-out infinite; filter: drop-shadow(0 0 18px rgba(243,186,47,.45)); }
.coin-sol  { bottom: 30%; left: 3%; animation: float-4 11s ease-in-out infinite; filter: drop-shadow(0 0 16px rgba(20,241,149,.4)); }
.coin-gold { top: 16%; right: 14%; animation: float-2 9s ease-in-out infinite 1s; filter: drop-shadow(0 0 18px rgba(245,182,66,.5)); }
.coin-btc2 { top: 75%; right: 9%; animation: float-1 13s ease-in-out infinite 2s; opacity: .5; }
.coin-eth2 { top: 46%; right: 13%; animation: float-3 7s ease-in-out infinite 3s; opacity: .45; }

@keyframes float-1 { 0%,100%{transform:translateY(0) rotate(0)} 25%{transform:translateY(-22px) rotate(8deg)} 50%{transform:translateY(-12px) rotate(-4deg) translateX(10px)} 75%{transform:translateY(-30px) rotate(6deg) translateX(-8px)} }
@keyframes float-2 { 0%,100%{transform:translateY(0) rotate(0)} 33%{transform:translateY(-18px) rotate(-6deg) translateX(-12px)} 66%{transform:translateY(-28px) rotate(10deg) translateX(8px)} }
@keyframes float-3 { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-20px) scale(1.08) rotate(12deg)} }
@keyframes float-4 { 0%,100%{transform:translateX(0) translateY(0)} 40%{transform:translateX(15px) translateY(-18px)} 80%{transform:translateX(-8px) translateY(-26px)} }

/* ═══ GLOW ORBS ═══ */
.glow-orb {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(80px);
}
.orb-1 { width: 420px; height: 420px; background: rgba(45,107,230,0.14); top: -160px; left: -110px; animation: orb-drift 18s ease-in-out infinite; }
.orb-2 { width: 360px; height: 360px; background: rgba(245,182,66,0.12); bottom: -120px; right: -90px; animation: orb-drift 14s ease-in-out infinite reverse; }
.orb-3 { width: 220px; height: 220px; background: rgba(16,185,129,0.08); top: 42%; left: 48%; animation: orb-drift 10s ease-in-out infinite 3s; }

@keyframes orb-drift {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, 22px); }
}

/* ═══ ORBIT RINGS ═══ */
.orbit-ring {
    position: fixed;
    z-index: 1;
    pointer-events: none;
    border-radius: 50%;
    border: 1px solid rgba(245, 182, 66, 0.10);
    top: 50%; left: 50%;
}
.orbit-ring-1 { width: 620px; height: 620px; transform: translate(-50%, -50%); animation: orbit-spin 42s linear infinite; }
.orbit-ring-2 { width: 420px; height: 420px; transform: translate(-50%, -50%); border-color: rgba(45,107,230,0.10); animation: orbit-spin 30s linear infinite reverse; }

@keyframes orbit-spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

/* ═══ PAGE WRAPPER ═══ */
.auth-wrap {
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 24px 16px;
}

/* ═══ GLASS CARD ═══ */
.auth-card {
    width: 100%;
    max-width: 480px;
    background: var(--card-bg);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--r-2xl);
    padding: 2.5rem 2rem;
    position: relative;
    box-shadow:
        0 0 0 1px rgba(45, 107, 230, 0.1),
        0 20px 60px rgba(0, 0, 0, 0.35),
        0 0 100px rgba(245, 182, 66, 0.06);
    overflow: hidden;
    animation: card-in 0.6s cubic-bezier(.22, 1, .36, 1) both;
}

@keyframes card-in {
    from { opacity: 0; transform: translateY(24px) scale(.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Top gradient bar */
.auth-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--gold));
}

/* Shimmer line */
.auth-card::after {
    content: '';
    position: absolute;
    top: 0; left: -120%;
    width: 60%; height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
    animation: card-shimmer 3.5s ease-in-out infinite 1s;
}

@keyframes card-shimmer {
    0% { left: -120%; }
    100% { left: 120%; }
}

/* ═══ LOGO BLOCK ═══ */
.logo-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2rem;
}

.logo-img-wrap {
    width: 76px; height: 76px;
    border-radius: 22px;
    background: linear-gradient(135deg, #fff 0%, #f1f5f9 100%);
    border: 2px solid rgba(45, 107, 230, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    animation: logo-pulse 3s ease-in-out infinite;
}

.logo-icon-core {
    width: 48px; height: 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

@keyframes logo-pulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(45,107,230,.18), 0 0 0 4px rgba(45,107,230,.07); }
    50% { box-shadow: 0 8px 32px rgba(245,182,66,.22), 0 0 0 6px rgba(245,182,66,.10); }
}

.logo-brand-name {
    font-size: 1.45rem;
    font-weight: 900;
    color: var(--text);
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.logo-tagline {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--muted);
    margin-top: 0.4rem;
}

/* ═══ FORM ELEMENTS ═══ */
.form-group { margin-bottom: 1.25rem; }

.form-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
}

.label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.label-row .form-label { margin-bottom: 0; }

.label-link {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color 0.2s;
}
.label-link:hover { color: var(--gold); }

.input-wrap { position: relative; }

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 17px; height: 17px;
    color: #94a3b8;
    pointer-events: none;
    transition: color 0.22s;
}

.form-group:focus-within .input-icon { color: var(--primary); }

.form-input {
    width: 100%;
    height: 52px;
    padding: 0 48px 0 46px;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: var(--r-md);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 500;
    outline: none;
    transition: all 0.25s ease;
    -webkit-appearance: none;
}

.form-input::placeholder { color: #94a3b8; font-weight: 400; }

.form-input:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(45, 107, 230, 0.1);
}

/* Password toggle */
.pass-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    transition: color 0.2s;
}
.pass-toggle:hover { color: var(--primary); }

/* ═══ BUTTON ═══ */
.btn-trade {
    width: 100%;
    height: 54px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 55%, var(--gold) 100%);
    background-size: 200% 200%;
    border: none;
    border-radius: var(--r-md);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 1.5rem;
    position: relative;
    overflow: hidden;
}

.btn-trade::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 70%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
    transition: left 0.5s ease;
}

.btn-trade:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(245, 182, 66, 0.45);
    background-position: right;
}
.btn-trade:hover::after { left: 130%; }
.btn-trade:active { transform: translateY(0); }

/* ═══ ALERTS ═══ */
.alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: var(--r-md);
    font-size: 0.83rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    animation: alert-in 0.3s ease both;
}

@keyframes alert-in {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

.alert-error {
    background: rgba(239, 68, 68, 0.09);
    border: 1px solid rgba(239, 68, 68, 0.22);
    color: #dc2626;
}

/* ═══ INFO BADGE ═══ */
.info-badge {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(45, 107, 230, 0.07);
    border: 1px solid rgba(45, 107, 230, 0.18);
    border-radius: var(--r-md);
    padding: 12px 14px;
    font-size: 0.76rem;
    color: #2D6BE6;
    font-weight: 500;
    line-height: 1.5;
    margin-top: 1rem;
}

/* ═══ AUTH FOOTER ═══ */
.auth-footer {
    text-align: center;
    margin-top: 1.75rem;
    font-size: 0.875rem;
    color: var(--muted);
}

.auth-footer a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.auth-footer a:hover { color: var(--gold); }

/* ═══ PAGE CREDIT ═══ */
.page-credit {
    position: relative;
    z-index: 10;
    margin-top: 24px;
    text-align: center;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ═══ SPIN ═══ */
@keyframes spin { to { transform: rotate(360deg); } }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 480px) {
    .auth-card { padding: 2rem 1.25rem; }
    .logo-brand-name { font-size: 1.3rem; }
    .ticker-item { padding: 0 18px; font-size: 10px; }
}
