    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      min-height: 100vh;
      display: flex;
      align-items: flex-start;
      padding-top: 8vh;
      justify-content: center;
      background: #fbfbfb;
      font-family: 'Source Sans 3', 'Segoe UI', sans-serif;
    }

    /* ── Preloader ── */
    #preloader {
      position: fixed;
      inset: 0;
      background: #fff;
      z-index: 9999;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
    }

    .preloader-bar-wrap {
      width: 360px;
      max-width: 88vw;
      height: 20px;
      border: 1px solid #c8c8c8;
      border-radius: 2px;
      background: #f5f5f5;
      padding: 3px;
    }

    .preloader-bar-fill {
      width: 55%;
      height: 100%;
      background: #c0c0c0;
      border-radius: 1px;
    }

    .preloader-text {
      font-size: 13px;
      color: #555;
    }

    /* Hide main card while preloader is visible */
    body.loading .card { visibility: hidden; }

    /* ── Card ── */
    .card {
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 4px;
      width: 740px;
      max-width: 98vw;
      padding: 36px 36px 40px;
      display: flex;
      flex-direction: column;
    }

    /* Header */
    .card-header {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 28px;
    }

    .fdic-logo-wrap {
      display: inline-flex;
      align-items: center;
      padding: 3px 7px;
      border-radius: 2px;
    }

    .fdic-logo-img {
      height: 18px;
      width: auto;
      display: block;
    }

    .fdic-tagline {
      font-size: 13px;
      color: #444;
      font-style: italic;
    }

    /* Body layout */
    .card-body {
      display: flex;
      gap: 28px;
      align-items: flex-start;
      flex-wrap: wrap;
    }

    /* Left column */
    .left-col {
      flex: 0 0 260px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .thumb-image {
      width: 200px;
      height: 70px;
      border-radius: 2px;
      
    }

    /* Form */
    .form-group {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

    label {
      font-size: 13.5px;
      color: #222;
      font-weight: 600;
    }

    input[type="text"],
    input[type="password"] {
      width: 100%;
      height: 34px;
      padding: 0 10px;
      border: 1px solid #ccc;
      border-radius: 2px;
      font-size: 14px;
      color: #222;
      background: #fff;
      outline: none;
      transition: border-color 0.15s;
    }

    input[type="text"]:focus,
    input[type="password"]:focus {
      border-color: #2196a4;
    }

    .form-actions {
      display: flex;
      align-items: center;
      gap: 18px;
      margin-top: 4px;
    }

    .btn-signin {
      background: #2e7d32;
      color: #fff;
      border: none;
      border-radius: 3px;
      padding: 7px 22px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.15s;
      font-family: inherit;
    }

    .btn-signin:hover { background: #1b5e20; }

    .forgot-link {
      font-size: 13.5px;
      color: #1565c0;
      text-decoration: none;
    }

    .forgot-link:hover { text-decoration: underline; }

    /* Right column */
    .right-col { flex: 1; }

    .hero-image {
      width: 100%;
      height: 400px;
      border-radius: 2px;
      display: block;
    }

    /* Footer (inside card) */
    .card-footer {
      flex: 0 0 100%;
    }

    .card-footer-sep {
      margin-top: -30px;
      margin-bottom: 14px;
      border: 0;
      border-top: 1px solid #ccc;
    }

    .card-footer-disclaimer {
      font-size: 12px;
      color: #6b6b6b;
      margin-bottom: 10px;
      line-height: 1.35;
    }

    .card-footer-links {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .card-footer-links a {
      font-size: 12px;
      color: #1565c0;
      text-decoration: none;
      font-weight: 600;
    }

    .card-footer-links a:hover { text-decoration: underline; }

    .card-footer-links-sep {
      font-size: 12px;
      color: #bbb;
    }

    /* Responsive */
    @media (max-width: 600px) {
      .card {
        padding: 24px 16px 28px;
        width: 100%;
        border-radius: 0;
        border-left: none;
        border-right: none;
      }

      .card-body { flex-direction: column; }

      .left-col { flex: none; width: 100%; }

      .right-col { width: 100%; }

      .hero-image { display: none; }

      .preloader-bar-wrap { width: 80vw; }
    }