  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      margin: 0;
      min-height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      background: #f5f5f5;
      font-family: 'Poppins', sans-serif;
    }

    .container {
      display: flex;
      align-items: stretch;
      width: 1050px;
      max-width: 95%;
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

    /* Left side (desktop) */
    .left-side {
      width: 450px;
    }

    .left-side img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* Mobile logo (hidden on desktop) */
    .mobile-logo {
      display: none;
      text-align: center;
      padding: 20px 0 10px;
    }

    .mobile-logo img {
      width: 120px;
      height: auto;
      object-fit: contain;
    }

    /* Right side (form area) */
    .right-side {
      width: 600px;
      padding: 50px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .form-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      width: 380px;
    }

    .form-container h2 {
      margin-bottom: 25px;
      font-size: 24px;
      font-weight: 600;
      color: #222;
    }

    /* Google button */
    .google-btn {
      width: 100%;
      height: 50px;
      border: 1px solid #DCDBDD;
      border-radius: 8px;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-bottom: 25px;
      cursor: pointer;
      font-size: 14px;
      font-weight: 500;
      color: #444;
      transition: all 0.2s ease;
      text-decoration: none;
    }

    .google-btn:hover {
      background: #f8f8f8;
      border-color: #ccc;
    }

    .google-btn img {
      width: 20px;
      height: 20px;
    }

    /* Divider */
    .divider {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      margin: 15px 0 25px;
      gap: 12px;
    }

    .divider .line {
      flex: 1;
      border-top: 1px dashed #E2E2EA;
    }

    .divider span {
      font-size: 13px;
      color: #888;
    }

    /* Input fields */
    .input-box {
      width: 100%;
      height: 55px;
      border: 1px solid #DCDBDD;
      border-radius: 8px;
      padding: 0 15px;
      margin-bottom: 15px;
      font-size: 14px;
      color: #333;
      background: white;
      transition: border-color 0.2s ease;
    }

    .input-box:focus {
      outline: none;
      border-color: #4A30F5;
    }

    .input-box.error {
      border-color: #e53e3e;
    }

    .error-message {
      color: #e53e3e;
      font-size: 12px;
      margin-top: -10px;
      margin-bottom: 15px;
      text-align: left;
      width: 100%;
    }

    /* Checkbox */
    .checkbox {
      display: flex;
      align-items: center;
      margin: 5px 0 25px;
      width: 100%;
      justify-content: flex-start;
    }

    .checkbox input {
      margin-right: 10px;
      width: 16px;
      height: 16px;
    }

    .checkbox label {
      font-size: 14px;
      color: #444;
      font-style: normal;
      font-weight: 400;
    }

    /* Create button */
    .create-btn {
      width: 100%;
      height: 50px;
      border-radius: 8px;
      background: #4A30F5;
      color: #fff;
      font-weight: 500;
      font-size: 14px;
      border: none;
      cursor: pointer;
      margin-bottom: 25px;
      transition: background-color 0.2s ease;
    }

    .create-btn:hover {
      background: #3d28d4;
    }

    .create-btn:disabled {
      background: #ccc;
      cursor: not-allowed;
    }

    /* Terms */
    .terms {
      font-size: 12px;
      color: #696974;
      text-align: center;
      line-height: 18px;
    }

    .terms span {
      font-weight: 500;
      color: #4A30F5;
      cursor: pointer;
    }

    .terms span:hover {
      text-decoration: underline;
    }

    /* Success message */
    .success-message {
      color: #28a745;
      font-size: 12px;
      margin-bottom: 15px;
      text-align: center;
      display: none;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .container {
        flex-direction: column;
        width: 95%;
        max-width: 600px;
      }

      .left-side {
        display: none; /* hide desktop logo */
      }

      .mobile-logo {
        display: block; /* show mobile logo */
      }

      .right-side {
        width: 100%;
        padding: 25px 20px;
      }

      .form-container {
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
      }
    }

    @media (max-width: 480px) {
      .mobile-logo img {
        width: 90px;
      }

      .form-container h2 {
        font-size: 20px;
        margin-bottom: 18px;
      }

      .google-btn {
        height: 45px;
        font-size: 13px;
      }

      .input-box {
        height: 48px;
        font-size: 13px;
      }

      .create-btn {
        height: 45px;
        font-size: 13px;
      }

      .terms {
        font-size: 10px;
      }
    }