    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', sans-serif;
    }

    body {
      background: #f4f6f9;
    }

    .wrapper {
      display: flex;
      min-height: 100vh;
    }

    /* LEFT SIDE */
    .left {
      flex: 0.55;
      background: linear-gradient(135deg, #3b5bdb, #4263eb);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 60px;
    }

    .left-content {
      max-width: 500px;
    }

    .left h1 {
      font-size: 36px;
      margin-bottom: 20px;
    }

    .left p {
      line-height: 1.6;
      margin-bottom: 20px;
      opacity: 0.9;
    }

    .left ul {
      list-style: none;
    }

    .left ul li {
      margin-bottom: 10px;
    }

    /* RIGHT SIDE */
    .right {
      flex: 0.45;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    }

    .card {
      width: 100%;
      max-width: 420px;
      background: white;
      padding: 40px;
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      text-align: center;
    }

    .card img {
      width: 60px;
      margin-bottom: 15px;
    }

    .card h2 {
      margin-bottom: 5px;
    }

    .card p {
      margin-bottom: 25px;
      color: #666;
    }

    .form-group {
      text-align: left;
      margin-bottom: 15px;
    }

    .form-group label {
      font-size: 14px;
      margin-bottom: 5px;
      display: block;
    }

    .form-group input {
      width: 100%;
      padding: 12px;
      border-radius: 8px;
      border: 1px solid #ddd;
    }

    .form-group input:focus {
      border-color: #4263eb;
      outline: none;
    }

    .checkbox {
      display: flex;
      align-items: center;
      font-size: 14px;
      margin-bottom: 20px;
    }

    .checkbox input {
      margin-right: 8px;
    }

    .btn {
      width: 100%;
      padding: 12px;
      border: none;
      border-radius: 8px;
      background: #4263eb;
      color: white;
      font-weight: bold;
      cursor: pointer;
      transition: 0.3s;
    }

    .btn:hover {
      background: #364fc7;
    }

    .footer {
      margin-top: 20px;
      font-size: 12px;
      color: #888;
    }

    /* RESPONSIVE */
    @media(max-width: 900px) {
      .wrapper {
        flex-direction: column;
      }

      .left {
        display: none;
      }

      .right {
        flex: 1;
      }
    }