    /* 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: var(--background);
      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;
    }

    .auth-focal-title {
      font-size: 2.15rem;
      margin-bottom: var(--space-3);
      color: var(--primary-dark);
      letter-spacing: -0.02em;
      line-height: 1.15;
    }

    .auth-support-copy {
      margin-bottom: 0;
      max-width: 44ch;
      margin-inline: auto;
    }

    .auth-hero-title {
      font-size: 3rem;
      margin-bottom: var(--space-5);
      color: white;
      line-height: 1.08;
      letter-spacing: -0.02em;
      max-width: 16ch;
    }

    .auth-hero-subtitle {
      font-size: 1.06rem;
      opacity: 0.92;
      line-height: 1.7;
      margin-bottom: 0;
      max-width: 48ch;
    }

    .auth-primary-action {
      width: 100%;
      padding: 1rem;
      font-size: 1rem;
    }

    .role-selector {
      display: flex;
      gap: 0.75rem;
      margin-bottom: 2.5rem;
      background: var(--background);
      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);
    }

    /* Flash + form errors (aligned with applications form-error-summary) */
    .auth-messages {
      margin-bottom: 1rem;
    }

    .auth-message {
      padding: 0.75rem 0.9rem;
      border-radius: var(--radius-md);
      font-size: 0.9rem;
      margin-bottom: 0.5rem;
    }

    .auth-message:last-child {
      margin-bottom: 0;
    }

    .auth-message--error {
      border: 1px solid rgba(220, 38, 38, 0.3);
      background: rgba(220, 38, 38, 0.08);
      color: #991b1b;
    }

    .auth-message--success {
      border: 1px solid rgba(22, 163, 74, 0.35);
      background: rgba(22, 163, 74, 0.08);
      color: #166534;
    }

    .auth-message--warning {
      border: 1px solid rgba(217, 119, 6, 0.4);
      background: rgba(251, 191, 36, 0.12);
      color: #92400e;
    }

    .auth-message--info {
      border: 1px solid var(--border-color);
      background: var(--background);
      color: var(--primary-dark);
    }

    .auth-form-error,
    .auth-field-error {
      margin-bottom: 1rem;
      padding: 0.75rem 0.9rem;
      border-radius: var(--radius-md);
      border: 1px solid rgba(220, 38, 38, 0.3);
      background: rgba(220, 38, 38, 0.08);
      color: #991b1b;
      font-size: 0.9rem;
    }

    .auth-field-error {
      margin-top: 0.5rem;
      margin-bottom: 0;
    }

    .auth-error-list {
      margin: 0;
      padding-left: 1.25rem;
      list-style: disc;
    }

    .auth-error-list li {
      margin: 0.15rem 0;
    }

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

    .input-field {
      background: var(--background);
      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: var(--shadow-input);
    }

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

    .search-input-wrapper:focus-within .auth-input-leading-icon {
      color: var(--primary-accent);
    }

    .search-input-wrapper--password .input-field {
      padding-right: 3rem;
    }

    .password-toggle {
      position: absolute;
      right: 0.35rem;
      top: 50%;
      transform: translateY(-50%);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 2.5rem;
      height: 2.5rem;
      padding: 0;
      margin: 0;
      border: none;
      border-radius: var(--radius-md, 8px);
      background: transparent;
      color: var(--muted-text);
      cursor: pointer;
      transition: color 0.2s ease, background 0.2s ease;
    }

    .password-toggle:hover {
      color: var(--primary-dark);
      background: rgba(15, 31, 35, 0.06);
    }

    .password-toggle:focus-visible {
      outline: none;
      box-shadow: 0 0 0 3px rgba(47, 124, 123, 0.25);
    }

    .search-input-wrapper--password .password-toggle svg {
      position: static;
      left: auto;
      top: auto;
      transform: none;
    }

    .password-toggle__icon.hidden {
      display: none;
    }

    /* 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);
      }

      .auth-focal-title {
        font-size: 1.85rem;
      }
    }

    .hidden {
      display: none;
    }

