    body { margin: 0; font-family: 'Segoe UI', sans-serif; background: #f0f2f5; }
    .container { display: flex; height: 100vh; }
    .left-panel {
      width: 50%;
      background: #e3e9f3;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 3rem;
    }
    .left-panel img {
      max-width: 80%;
      border-radius: 12px;
      box-shadow: 0 0 20px rgba(0,0,0,0.1);
      margin-bottom: 1.5rem;
    }
    .right-panel {
      width: 50%;
      padding: 3rem;
      background: #ffffff;
      display: flex;
      flex-direction: column;
      justify-content: center;
      box-shadow: -2px 0 10px rgba(0,0,0,0.05);
    }
    h1 { color: #004e8c; margin-bottom: 0.5rem; }
    p.subtitle { color: #666; font-size: 1.1rem; margin-top: 0; margin-bottom: 2rem; }
    .verify-btn {
      display: inline-block;
      padding: 0.8rem 1.5rem;
      background: #ff8800;
      color: white;
      border: none;
      border-radius: 5px;
      font-size: 1rem;
      text-decoration: none;
      cursor: pointer;
      text-align: center;
      width: fit-content;
    }
    .verify-btn:hover {
      background: #e07000;
    }
    .info-block {
      font-size: 0.95rem;
      color: #444;
      line-height: 1.5;
    }
