
    :root {
      --brand-dark: #74c5f2;
      --brand-mid: #74c5f2;
      --brand-light: #74c5f2;
      --brand-accent: #4aaee8;
      --text-muted-on-blue: rgba(255,255,255,0.75);
    }

    * { box-sizing: border-box; }

    body {
      font-family: 'DM Sans', sans-serif;
      min-height: 100vh;
      margin: 0;
      background: #f0f4f8;
      display: flex;
      align-items: stretch;
    }

    /* ── LEFT PANEL ── */
    .panel-left {
   background:
  linear-gradient(
    rgba(0, 102, 204, 0.5),
    rgba(0, 102, 204, 0.5)
  ),
   url('/assets/img/imagesbacground.jpg');

background-size: cover;
background-position: center;
background-repeat: no-repeat;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      padding: 2rem 2.5rem;
      position: relative;
      overflow: hidden;
    }

  

    
    .logo-wrap {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: auto;
      z-index: 1;
    }

    .logo-icon {
      width: 38px; height: 38px;
      background: rgba(255,255,255,0.18);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
    }

    .logo-icon svg { width: 20px; height: 20px; }

    .logo-name {
      font-family: 'Syne', sans-serif;
      color: #fff;
      font-size: 17px;
      font-weight: 700;
      letter-spacing: 0.2px;
    }

    .illus-card {
      background: #0b1826;
      border-radius: 16px;
      width: 200px;
      min-height: 180px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 1.5rem 1rem 1rem;
      margin-bottom: 2rem;
    }

    .illus-avatar {
      width: 64px; height: 64px;
      background: #1e6fa8;
      border-radius: 50%;
      margin-bottom: 10px;
      display: flex; align-items: center; justify-content: center;
      position: relative;
      overflow: visible;
    }

    .illus-avatar::after {
      content: '';
      position: absolute;
      bottom: -14px; left: 50%;
      transform: translateX(-50%);
      width: 80px; height: 36px;
      background: #1e6fa8;
      border-radius: 50% 50% 0 0;
    }

    .illus-avatar svg { width: 30px; height: 30px; fill: rgba(255,255,255,0.3); }

    .illus-brand {
      text-align: center;
      margin-top: 16px;
      line-height: 1.3;
    }
    .illus-brand .t1 { color: #4aaee8; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; }
    .illus-brand .t2 { color: #4aaee8; font-size: 13px; font-weight: 700; letter-spacing: 1px; }
    .illus-brand .t3 { color: #3a7fa8; font-size: 9px; letter-spacing: 2px; margin-top: 2px; }
    .illus-brand .t4 { color: #2d6a8a; font-size: 8px; letter-spacing: 2.5px; }

    .hero-title {
      font-family: 'Syne', sans-serif;
      color: #fff;
      font-size: 22px;
      font-weight: 800;
      line-height: 1.3;
      text-align: center;
      margin-bottom: 0.85rem;
      z-index: 1;
    }

    .hero-desc {
      color: var(--text-muted-on-blue);
      font-size: 13px;
      text-align: center;
      line-height: 1.7;
      margin-bottom: 1.75rem;
      z-index: 1;
    }

    .badges-row {
      display: flex;
      gap: 0.75rem;
      justify-content: center;
      z-index: 1;
    }

    .badge-pill {
      background: rgba(255,255,255,0.14);
      border: 1px solid rgba(255,255,255,0.22);
      border-radius: 8px;
      padding: 0.45rem 1rem;
      font-size: 12px;
      color: #fff;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .badge-pill svg { width: 14px; height: 14px; stroke: #fff; fill: none; }

    /* ── RIGHT PANEL ── */
    .panel-right {
      background: #fff;
      min-height: 800px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 3rem 3.5rem;
    }

    .panel-right h1 {
      font-family: 'Syne', sans-serif;
      font-size: 26px;
      font-weight: 700;
      color: #0f1923;
      margin-bottom: 0.4rem;
    }

    .panel-right .subtitle {
      font-size: 14px;
      color: #6b7a8d;
      margin-bottom: 1.75rem;
    }

    /* Tabs */
    .method-tabs {
      display: flex;
      border: 1px solid #e2e8f0;
      border-radius: 10px;
      overflow: hidden;
      margin-bottom: 1.75rem;
    }

    .method-tab {
      flex: 1;
      padding: 0.65rem 0.5rem;
      font-size: 13px;
      font-family: 'DM Sans', sans-serif;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      cursor: pointer;
      border: none;
      background: transparent;
      color: #8899aa;
      transition: all 0.2s;
    }

    .method-tab.active {
      background: #f0f6fc;
      color: #74c5f2;
      font-weight: 600;
    }

    .method-tab svg { width: 15px; height: 15px; }

    /* Form fields */
   .field-label {
      font-size: 15px;
      font-weight: 600;
      color: #23282a;
      margin-bottom: 0.35rem;
      display: block;
    }


    .input-group-custom {
      display: flex;
      align-items: center;
      border: 1px solid #dde3ec;
      border-radius: 10px;
      padding: 0 12px;
      height: 46px;
      background: #fff;
      transition: border-color 0.2s;
    }

    .input-group-custom:focus-within {
      border-color: #74c5f2;
      box-shadow: 0 0 0 3px rgba(26,122,191,0.1);
    }

    .input-group-custom svg {
      width: 16px; height: 16px;
      stroke: #aab4c2;
      fill: none;
      flex-shrink: 0;
      margin-right: 10px;
    }

    .input-group-custom input {
      border: none;
      outline: none;
      flex: 1;
      font-size: 14px;
      font-family: 'DM Sans', sans-serif;
      color: #1a2535;
      background: transparent;
    }

    .input-group-custom input::placeholder { color: #b0bbc9; }

    .eye-btn {
      background: none;
      border: none;
      padding: 0;
      cursor: pointer;
      display: flex;
      align-items: center;
    }

    .eye-btn svg { width: 16px; height: 16px; stroke: #aab4c2; fill: none; margin-right: 0; }

    .forgot-link {
      font-size: 13px;
      color: #74c5f2;
      text-decoration: none;
      font-weight: 500;
    }

    .forgot-link:hover { text-decoration: underline; color: #74c5f2; }

    .remember-label {
      font-size: 13px;
      color: #6b7a8d;
      margin-left: 8px;
      user-select: none;
    }

    .btn-connect {
      background: #74c5f2;
      color: #fff;
      border: none;
      border-radius: 10px;
      height: 50px;
      font-size: 15px;
      font-weight: 600;
      font-family: 'DM Sans', sans-serif;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      width: 100%;
      cursor: pointer;
      transition: background 0.2s, transform 0.1s;
    }

    .btn-connect:hover { background: #74c5f2; }
    .btn-connect:active { transform: scale(0.99); }
    .btn-connect svg { width: 18px; height: 18px; stroke: #fff; fill: none; }

    /* Divider */
    .or-divider {
      display: flex;
      align-items: center;
      gap: 12px;
      color: #b0bbc9;
      font-size: 12px;
      margin: 1.25rem 0;
    }

    .or-divider::before, .or-divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: #e8edf3;
    }

    /* Social buttons */
    .btn-social {
      flex: 1;
      height: 44px;
      border: 1px solid #dde3ec;
      border-radius: 10px;
      background: #fff;
      font-size: 14px;
      font-family: 'DM Sans', sans-serif;
      font-weight: 500;
      color: #1a2535;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      cursor: pointer;
      transition: background 0.15s, border-color 0.15s;
    }

    .btn-social:hover { background: #f7fafd; border-color: #c0cad8; }
    .btn-social svg { width: 18px; height: 18px; }

    .register-text {
      text-align: center;
      font-size: 13px;
      color: #6b7a8d;
      margin-bottom: 1.25rem;
    }

    .register-text a {
      color: #1a7abf;
      font-weight: 600;
      text-decoration: none;
    }

    .register-text a:hover { text-decoration: underline; }

    .ssl-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      font-size: 11px;
      color: #aab4c2;
      margin-bottom: 0.75rem;
    }

    .ssl-row svg { width: 13px; height: 13px; stroke: #aab4c2; fill: none; }

    .payment-icons {
      display: flex;
      justify-content: center;
      gap: 6px;
    }

    .pay-chip {
      width: 30px;
      height: 19px;
      border-radius: 4px;
      border: 1px solid #dde3ec;
    }

    .pay-visa { background: #1a1f71; }
    .pay-mc   { background: #252525; }
    .pay-wave { background: #f57f20; }

    /* Responsive */
    @media (max-width: 768px) {
      .panel-left { display: none; }
      .panel-right { padding: 2rem 1.5rem; min-height: 100vh; }
    }
