    /* Executive Auth Styling */
    body {
      background: white;
      overflow-x: hidden;
    }
    
    .auth-container {
      display: flex;
      min-height: 100vh;
      width: 100%;
    }

    .auth-left {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 2rem;
      position: relative;
      background: #f8fafc;
      z-index: 10;
      min-width: 0;
    }

    .auth-form-wrapper {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      padding: 2rem 0;
    }

    .auth-form-header {
      margin-bottom: 2.5rem;
      text-align: center;
    }

    .auth-form-header .auth-logo-svg {
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .auth-footer {
      margin-top: auto;
      font-size: 0.8rem;
      color: var(--muted-text);
      padding: 1rem 0;
      flex-shrink: 0;
    }

    .auth-logo-svg {
      height: 60px;
      width: auto;
      margin-bottom: 1rem;
    }

    /* Right Side - Immersive Brand Experience */
    .auth-right {
      flex: 1.2;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 6rem;
      color: white;
      background: var(--primary-dark);
    }

    .auth-right-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&q=80&w=1200');
      background-size: cover;
      background-position: center;
      opacity: 0.4;
      mix-blend-mode: overlay;
      z-index: 1;
      transform: scale(1.05);
      transition: transform 10s ease;
    }

    .auth-right:hover .auth-right-bg {
      transform: scale(1.1);
    }

    .auth-right-content {
      position: relative;
      z-index: 2;
      max-width: 500px;
    }

    /* Auth Form Styling */
    .auth-form-container {
      width: 100%;
      max-width: 420px;
      padding: 2.5rem;
    }

    .role-selector {
      display: flex;
      gap: 0.75rem;
      margin-bottom: 2.5rem;
      background: #f8fafc;
      padding: 0.25rem;
      border-radius: 0.75rem;
      border: 1px solid var(--border-color);
    }

    .role-option {
      flex: 1;
      padding: 0.6rem;
      border-radius: 0.5rem;
      text-align: center;
      cursor: pointer;
      font-size: 0.85rem;
      font-weight: 600;
      transition: all 0.3s ease;
      color: var(--muted-text);
      border: 1px solid transparent;
    }

    .role-option:hover {
      color: var(--primary-dark);
      background: rgba(255,255,255,0.5);
    }

    .role-option.active {
      background: white;
      color: var(--primary-dark);
      box-shadow: 0 2px 4px rgba(0,0,0,0.05);
      border-color: var(--border-color);
    }

    .input-group {
      margin-bottom: 1.5rem;
    }

    .input-field {
      background: #f8fafc;
      border: 1px solid var(--border-color);
      transition: all 0.3s ease;
      padding: 1rem;
    }

    .input-field:focus {
      background: white;
      border-color: var(--primary-accent);
      box-shadow: 0 0 0 4px rgba(31, 164, 169, 0.1);
    }

    .search-input-wrapper svg {
      color: var(--muted-text);
      transition: color 0.3s;
    }

    .input-field:focus + svg,
    .search-input-wrapper:focus-within svg {
      color: var(--primary-accent);
    }

    /* Feature List */
    .feature-list {
      list-style: none;
      margin-top: 3rem;
      border-top: 1px solid rgba(255,255,255,0.2);
      padding-top: 3rem;
    }

    .feature-item {
      display: flex;
      align-items: flex-start;
      gap: 1.5rem;
      margin-bottom: 2rem;
    }

    .feature-icon {
      background: rgba(212, 175, 55, 0.2);
      width: 48px;
      height: 48px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--brand-gold);
      flex-shrink: 0;
      backdrop-filter: blur(4px);
      border: 1px solid rgba(212, 175, 55, 0.3);
    }

    .feature-text h4 {
      color: white;
      font-size: 1.1rem;
      margin-bottom: 0.25rem;
      font-weight: 600;
    }

    .feature-text p {
      color: rgba(255,255,255,0.7);
      font-size: 0.9rem;
      line-height: 1.5;
      margin-bottom: 0;
    }

    /* Typography */
    .font-serif {
      font-family: 'Playfair Display', serif;
    }

    /* Mobile adjustments */
    @media (max-width: 1024px) {
      .auth-right {
        display: none;
      }
      .auth-left {
        padding: 1rem;
      }
      .auth-form-container {
        padding: 2rem;
        background: white;
        border-radius: 1.5rem;
        box-shadow: var(--shadow-lg);
      }
    }

    .hidden {
      display: none;
    }

