.lg-wrap {
    --navy: #0c3c84;
    --blue: #1a5fb4;
    --red: #e61c24;
    --ink: #1c2733;
    --muted: #6b7686;
    --line: #e6e9ef;
    font-family: inherit;
    color: var(--ink);
  }

  .lg-section {
    padding: 40px 0 !important;
    min-height: calc(100vh - 260px);
    display: flex;
    align-items: center;
    background:
      radial-gradient(circle at 15% 20%, rgba(26, 95, 180, 0.06), transparent 45%),
      radial-gradient(circle at 85% 80%, rgba(230, 28, 36, 0.05), transparent 45%);
  }

  .lg-panel {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(12, 60, 132, 0.12);
    border: 1px solid var(--line);
  }

  .lg-illustration {
    position: relative;
    background: linear-gradient(150deg, var(--navy) 0%, var(--blue) 100%);
    padding: 44px 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
    overflow: hidden;
  }
  .lg-illustration::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -70px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(230, 28, 36, 0.16);
  }
  .lg-illustration::before {
    content: "";
    position: absolute;
    left: -50px;
    top: -50px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
  }
  .lg-illustration-top { position: relative; z-index: 1; }
  .lg-eyebrow {
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .72rem;
    font-weight: 700;
    color: rgba(255,255,255,.75);
    margin-bottom: 10px;
  }
  .lg-illustration h3 {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 10px;
	color:#fff;
  }
  .lg-illustration p {
    font-size: .88rem;
    color: rgba(255,255,255,.85);
    max-width: 100%;
    margin: 0;
  }
  .lg-illustration img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    max-height: 240px;
    object-fit: contain;
    margin: 16px auto 0;
    display: block;
    filter: drop-shadow(0 12px 20px rgba(0,0,0,0.18));
  }

  /* ---- Right: form side ---- */
  .lg-form-side {
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .lg-title {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
  }
  .lg-subtitle {
    color: var(--muted);
    font-size: .88rem;
    margin-bottom: 26px;
  }

  .lg-field-label {
    font-size: .78rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 6px;
    display: block;
  }
  .lg-input-group {
    display: flex;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color .15s ease, box-shadow .15s ease;
  }
  .lg-input-group:focus-within {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(26, 95, 180, 0.12);
  }
  .lg-input-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    color: var(--blue);
    background: #f5f8fc;
    border-right: 1px solid var(--line);
    font-size: 1rem;
  }
  .lg-input-group input {
    border: none;
    outline: none;
    flex: 1;
    padding: 12px 12px;
    font-size: .92rem;
    background: transparent;
    color: var(--ink);
  }
  .lg-toggle-pass {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    background: #f5f8fc;
    border-left: 1px solid var(--line);
    color: var(--muted);
    cursor: pointer;
    font-size: 1rem;
    user-select: none;
    transition: color .15s ease;
  }
  .lg-toggle-pass:hover { color: var(--blue); }

  .lg-field { margin-bottom: 18px; }

  .lg-login-btn {
    width: 100%;
    background: var(--red);
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: .95rem;
    padding: 12px;
    border-radius: 10px;
    box-shadow: 0 8px 5px #5d57f4;
    transition: transform .15s ease, box-shadow .15s ease;
  }
  .lg-login-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px #8e89ff;
    color: #fff;
  }

  .lg-links {
    margin-top: 18px;
    font-size: .82rem;
    color: var(--muted);
    text-align: center;
    line-height: 1.7;
  }
  .lg-links a {
    color: var(--blue);
    font-weight: 600;
    text-decoration: none;
  }
  .lg-links a:hover { text-decoration: underline; }
  .lg-links .lg-divider {
    display: block;
    height: 1px;
    background: var(--line);
    margin: 14px 0;
  }

  @media (max-width: 860px) {
    .lg-panel { grid-template-columns: 1fr; }
    .lg-illustration { padding: 32px 28px; }
    .lg-illustration img { max-height: 160px; }
    .lg-form-side { padding: 36px 28px; }
  }