    :root {
      --lg-bg: hsl(210, 20%, 98%);
      --lg-fg: hsl(215, 25%, 15%);
      --lg-card: hsl(0, 0%, 100%);
      --lg-primary: hsl(211, 98%, 54%);
      --lg-primary-fg: hsl(0, 0%, 100%);
      --lg-primary-dark: hsl(211, 98%, 44%);
      --lg-muted: hsl(210, 15%, 95%);
      --lg-muted-fg: hsl(215, 12%, 50%);
      --lg-border: hsl(214, 20%, 92%);
      --lg-ring: hsl(211, 98%, 54%);
      --lg-radius: 0.75rem;
      --lg-gradient: linear-gradient(135deg, hsl(211, 98%, 54%), hsl(211, 98%, 38%));
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', system-ui, sans-serif;
      background: var(--lg-bg);
      color: var(--lg-fg);
      -webkit-font-smoothing: antialiased;
      min-height: 100vh;
    }

    .lg-wrapper {
      display: flex;
      min-height: 100vh;
    }

    /* Left branding panel */
    .lg-brand {
      display: none;
      width: 50%;
      position: relative;
      overflow: hidden;
      background: var(--lg-gradient);
    }

    .lg-brand-blur1 {
      position: absolute;
      top: 5rem;
      left: 2rem;
      width: 18rem;
      height: 18rem;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.12);
      filter: blur(60px);
    }

    .lg-brand-blur2 {
      position: absolute;
      bottom: 3rem;
      right: 2rem;
      width: 24rem;
      height: 24rem;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      filter: blur(80px);
    }

    .lg-brand-inner {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 4rem;
      height: 100%;
    }

    .lg-brand-logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 3rem;
    }

    .lg-brand-logo-icon {
      width: 3rem;
      height: 3rem;
      border-radius: var(--lg-radius);
      background: rgb(255, 255, 255);
      backdrop-filter: blur(8px);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .lg-brand-logo-icon svg {
      width: 1.75rem;
      height: 1.75rem;
      color: var(--lg-primary-fg);
    }

    .lg-brand-logo h1 {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--lg-primary-fg);
    }

    .lg-brand-logo p {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.7);
    }

    .lg-brand h2 {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--lg-primary-fg);
      line-height: 1.2;
      margin-bottom: 1rem;
    }

    .lg-brand .lg-desc {
      font-size: 1.1rem;
      color: rgba(255, 255, 255, 0.8);
      max-width: 28rem;
      line-height: 1.6;
    }

    .lg-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
      margin-top: 3rem;
    }

    .lg-stat {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(6px);
      border-radius: var(--lg-radius);
      padding: 1rem;
    }

  .lg-stat strong {
	display: block;
	font-size: 17px;
	font-weight: 500;
	color: var(--lg-primary-fg);
}

    .lg-stat span {
      font-size: 0.7rem;
      color: rgba(255, 255, 255, 0.6);
      margin-top: 0.25rem;
      display: block;
    }

    /* Right form panel */
    .lg-form-panel {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1.5rem;
    }

    .lg-form-box {
      width: 100%;
      max-width: 28rem;
    }

    .lg-mobile-logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 2rem;
    }

    .lg-mobile-logo-icon {
      width: 2.5rem;
      height: 2.5rem;
      border-radius: var(--lg-radius);
      background: var(--lg-primary);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .lg-mobile-logo-icon svg {
      width: 1.25rem;
      height: 1.25rem;
      color: var(--lg-primary-fg);
    }

    .lg-mobile-logo h1 {
      font-size: 1.125rem;
      font-weight: 700;
    }

    .lg-mobile-logo p {
      font-size: 0.7rem;
      color: var(--lg-muted-fg);
    }

    .lg-form-box h2 {
      font-size: 1.5rem;
      font-weight: 700;
    }

    .lg-form-box .lg-subtitle {
      color: var(--lg-muted-fg);
      margin-top: 0.25rem;
      margin-bottom: 2rem;
      font-size: 0.9rem;
    }

    .lg-field {
      margin-bottom: 1.25rem;
    }

    .lg-field label {
      display: block;
      font-size: 0.8rem;
      font-weight: 500;
      margin-bottom: 0.375rem;
    }

    .lg-input-wrap {
      position: relative;
    }

    .lg-input-wrap svg {
      position: absolute;
      left: 0.75rem;
      top: 50%;
      transform: translateY(-50%);
      width: 1rem;
      height: 1rem;
      color: var(--lg-muted-fg);
      pointer-events: none;
    }

    .lg-input-wrap input {
      width: 100%;
      padding: 0.75rem 0.75rem 0.75rem 2.5rem;
      background: var(--lg-bg);
      border: 1px solid var(--lg-border);
      border-radius: 0.5rem;
      font-size: 0.875rem;
      font-family: inherit;
      color: var(--lg-fg);
      transition: border-color 0.2s, box-shadow 0.2s;
      outline: none;
    }

    .lg-input-wrap input:focus {
      border-color: var(--lg-ring);
      box-shadow: 0 0 0 3px hsla(211, 98%, 54%, 0.12);
    }

    .lg-input-wrap input::placeholder {
      color: var(--lg-muted-fg);
    }

    .lg-input-wrap .lg-eye {
      position: absolute;
      right: 0.75rem;
      top: 50%;
      transform: translateY(-50%);
      background: none;
      border: none;
      cursor: pointer;
      color: var(--lg-muted-fg);
      padding: 0;
      display: flex;
    }

    .lg-input-wrap .lg-eye:hover {
      color: var(--lg-fg);
    }

    .lg-input-wrap .lg-eye svg {
      position: static;
      transform: none;
    }

    .lg-options {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 1.5rem;
    }

    .lg-remember {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      cursor: pointer;
    }

    .lg-remember input {
      width: 1rem;
      height: 1rem;
      accent-color: var(--lg-primary);
      cursor: pointer;
    }

    .lg-remember span {
      font-size: 0.8rem;
      color: var(--lg-muted-fg);
    }

    .lg-forgot {
      font-size: 0.8rem;
      font-weight: 500;
      color: var(--lg-primary);
      background: none;
      border: none;
      cursor: pointer;
      font-family: inherit;
    }

    .lg-forgot:hover {
      text-decoration: underline;
    }

    .lg-btn {
      width: 100%;
      padding: 0.75rem;
      border-radius: 0.5rem;
      font-size: 0.875rem;
      font-weight: 600;
      border: none;
      cursor: pointer;
      font-family: inherit;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      transition: background 0.2s, opacity 0.2s;
    }

    .lg-btn-primary {
      background: var(--lg-primary);
      color: var(--lg-primary-fg);
    }

    .lg-btn-primary:hover {
      background: var(--lg-primary-dark);
    }

    .lg-btn-primary:disabled {
      opacity: 0.6;
      cursor: not-allowed;
    }

    .lg-spinner {
      width: 1.25rem;
      height: 1.25rem;
      border: 2px solid rgba(255, 255, 255, 0.3);
      border-top-color: var(--lg-primary-fg);
      border-radius: 50%;
      animation: lg-spin 0.6s linear infinite;
    }

    @keyframes lg-spin {
      to {
        transform: rotate(360deg);
      }
    }

    .lg-register-link {
      text-align: center;
      margin-top: 2rem;
      font-size: 0.8rem;
      color: var(--lg-muted-fg);
    }

    .lg-register-link button {
      background: none;
      border: none;
      color: var(--lg-primary);
      font-weight: 500;
      cursor: pointer;
      font-family: inherit;
      font-size: 0.8rem;
    }

    .lg-register-link button:hover {
      text-decoration: underline;
    }

    /* Forgot password states */
    .lg-sent-icon {
      width: 4rem;
      height: 4rem;
      border-radius: 50%;
      background: hsla(152, 60%, 42%, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1rem;
    }

    .lg-sent-icon svg {
      width: 2rem;
      height: 2rem;
      color: hsl(152, 60%, 42%);
    }

    .lg-back-link {
      display: inline-flex;
      align-items: center;
      gap: 0.375rem;
      font-size: 0.8rem;
      color: var(--lg-muted-fg);
      background: none;
      border: none;
      cursor: pointer;
      font-family: inherit;
      margin-bottom: 1.5rem;
    }

    .lg-back-link:hover {
      color: var(--lg-fg);
    }

    @media(min-width:1024px) {
      .lg-brand {
        display: flex;
      }

      .lg-mobile-logo {
        display: none;
      }
    }
    .lg-brand-logo-icon img {
	width: 50%;
}
    .required::after {
      content: " *";
      color: #ef4444;
      font-weight: bold;
    }
    .error-msg {
      color: #ef4444;
      font-size: 11px;
      margin-top: 4px;
      display: none;
      font-weight: 500;
    }
    input.error {
      border-color: #ef4444 !important;
    }